13 lines
289 B
C#
13 lines
289 B
C#
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using MonoGame.Extended.Collisions;
|
|
|
|
namespace client
|
|
{
|
|
public interface IEntity : ICollisionActor
|
|
{
|
|
public void Update(GameTime gameTime);
|
|
public void Draw(SpriteBatch spriteBatch);
|
|
}
|
|
}
|