10 lines
212 B
C#
10 lines
212 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ET.Server
|
|
{
|
|
[ComponentOf(typeof(Scene))]
|
|
public class RobotManagerComponent: Entity, IAwake, IDestroy
|
|
{
|
|
public HashSet<int> robots = new();
|
|
}
|
|
} |