| 123456789101112131415161718192021222324252627282930313233 |
- using Microsoft.Xna.Framework;
- using Microsoft.Xna.Framework.Content;
- using Microsoft.Xna.Framework.Graphics;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Tutorial020.States
- {
- public abstract class State
- {
- protected Game1 _game;
- protected ContentManager _content;
- public State(Game1 game, ContentManager content)
- {
- _game = game;
- _content = content;
- }
- public abstract void LoadContent();
- public abstract void Update(GameTime gameTime);
- public abstract void PostUpdate(GameTime gameTime);
- public abstract void Draw(GameTime gameTime, SpriteBatch spriteBatch);
- }
- }
|