Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using Microsoft.Xna.Framework;
- using Microsoft.Xna.Framework.Graphics;
- namespace EngineTest
- {
- public class Block : Entity
- {
- public Block(Texture2D texture)
- : base(texture)
- {
- }
- public override void Draw(SpriteBatch spriteBatch)
- {
- base.Draw(spriteBatch);
- }
- public override void Update(GameTime gameTime, List<Entity> entities)
- {
- base.Update(gameTime, entities);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment