Наследование: DrawEngine2dModeBase
Пример #1
0
        protected LevelBase(Isometric2dModeBase mode)
        {
            if (mode == null)
                throw new ArgumentNullException();

            Mode = mode;

            InitializeInternal();
        }
Пример #2
0
 public static LevelBase Level1Factory(Isometric2dModeBase mode)
 {
     return new Level1(mode);
 }
Пример #3
0
 protected Level1(Isometric2dModeBase mode)
     : base(mode)
 {
 }