mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-21 17:11:30 +00:00
14 lines
356 B
C#
14 lines
356 B
C#
|
using FSO.Common.Rendering.Framework.Model;
|
|||
|
using Microsoft.Xna.Framework.Graphics;
|
|||
|
|
|||
|
namespace FSO.Common.Rendering.Framework
|
|||
|
{
|
|||
|
public interface IGraphicsLayer
|
|||
|
{
|
|||
|
void Initialize(GraphicsDevice device);
|
|||
|
void Update(UpdateState state);
|
|||
|
void PreDraw(GraphicsDevice device);
|
|||
|
void Draw(GraphicsDevice device);
|
|||
|
}
|
|||
|
}
|