12345678910111213141516171819202122 |
- using System.Collections.Generic;
- namespace ET.Server;
- [ChildOf(typeof(GameRoomComponent))]
- public class Room : Entity, IAwake<Player>, IDestroy
- {
-
- public int Type { get; set; }
-
-
- public long OwnerId { get; set; }
-
- public List<Player> Players { get; set; }
-
- public long CreateTime { get; set; }
- }
|