Inheritance: DrawEngine2dModeBase
Exemplo n.º 1
0
        protected LevelBase(Isometric2dModeBase mode)
        {
            if (mode == null)
                throw new ArgumentNullException();

            Mode = mode;

            InitializeInternal();
        }
Exemplo n.º 2
0
 public static LevelBase Level1Factory(Isometric2dModeBase mode)
 {
     return new Level1(mode);
 }
Exemplo n.º 3
0
 protected Level1(Isometric2dModeBase mode)
     : base(mode)
 {
 }