123456789101112131415 |
- using System.Collections.Generic;
- using System.Linq;
- namespace ET.Server
- {
-
-
-
- [ComponentOf(typeof (Scene))]
- public class GamePlayerComponent: Entity, IAwake, IDestroy
- {
-
- public readonly Dictionary<long, WNPlayer> idPlayers = new Dictionary<long, WNPlayer>();
- }
- }
|