コード例 #1
0
        public TDSC()
            : base()
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";

            graphics.PreferredBackBufferWidth = 672;
            graphics.PreferredBackBufferHeight = 672;

            map = new Map(this);
            mapEditor = new MapEditor(this);
        }
コード例 #2
0
 public Pathfinder(Map m)
 {
     map = m;
 }