13 lines
328 B
C#
13 lines
328 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ET.Server
|
|
{
|
|
|
|
[ComponentOf(typeof(Scene))]
|
|
public class RobotCaseComponent: Entity, IAwake, IDestroy
|
|
{
|
|
public Dictionary<int, EntityRef<RobotCase>> RobotCases = new Dictionary<int, EntityRef<RobotCase>>();
|
|
public int N = 10000;
|
|
}
|
|
} |