mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
13 lines
306 B
C#
13 lines
306 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ET.Server
|
|
{
|
|
|
|
[ComponentOf(typeof(Scene))]
|
|
public class RobotCaseComponent: Entity, IAwake, IDestroy
|
|
{
|
|
public Dictionary<int, RobotCase> RobotCases = new Dictionary<int, RobotCase>();
|
|
public int N = 10000;
|
|
}
|
|
} |