Esempio n. 1
0
 public static LazyPlayer GetInstanceForLoading(ILevelManager level, IPlayer player, LazyPlayerType type)
 {
     return(new LazyPlayer(level, player, type));
 }
Esempio n. 2
0
 protected LazyPlayer(ILevelManager level, IPlayer player, LazyPlayerType type)
     : base(level, player, type.Keep)
 {
     this.type = type;
 }
Esempio n. 3
0
        public static LazyPlayer CreateNew(ILevelManager level, IPlayer player, LazyPlayerType type)
        {
            var instance = new LazyPlayer(level, player, type);

            return(instance);
        }