コード例 #1
0
ファイル: Game1.cs プロジェクト: hakuliu/Schematogy
        /// <summary>
        /// LoadContent will be called once per game and is the place to load
        /// all of your content.
        /// </summary>
        protected override void LoadContent()
        {
            // Create a new SpriteBatch, which can be used to draw textures.
            spriteBatch = new SpriteBatch(GraphicsDevice);

            UI.UIContentManager.getInstance().LoadContents(Content);
            mousePic = UI.UIContentManager.getInstance().getTexture("mouse");
            BG = UI.UIContentManager.getInstance().getTexture("BG");
        }
コード例 #2
0
ファイル: Sprite.cs プロジェクト: hakuliu/Schematogy
 public Sprite(SpriteContent content, bool loopable, double framerate)
 {
     this.content = content;
     this.loop = loopable;
     this.framerate = framerate;
 }