20 lines
658 B
C#
20 lines
658 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Microsoft.Xna.Framework;
|
|
using FarseerPhysics.SamplesFramework;
|
|
|
|
|
|
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);
|
|
}
|
|
}
|