2012-03-24 23:06:51 +00:00
|
|
|
|
using FarseerPhysics.SamplesFramework;
|
2012-03-19 23:57:59 +00:00
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Axios.Engine.Interfaces
|
|
|
|
|
{
|
|
|
|
|
interface IAxiosGameObject
|
|
|
|
|
{
|
|
|
|
|
void Update(AxiosGameScreen gameScreen, GameTime gameTime, bool otherScreenHasFocus, bool coveredByOtherScreen);
|
|
|
|
|
void LoadContent(AxiosGameScreen gameScreen);
|
|
|
|
|
void HandleInput(AxiosGameScreen gameScreen, InputHelper input, GameTime gameTime);
|
|
|
|
|
void HandleCursor(AxiosGameScreen gameScreen, InputHelper input);
|
|
|
|
|
void UnloadContent(AxiosGameScreen gameScreen);
|
|
|
|
|
}
|
|
|
|
|
}
|