mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 01:42:24 +00:00
9 lines
176 B
C#
9 lines
176 B
C#
|
using Microsoft.Xna.Framework.Graphics;
|
|||
|
|
|||
|
namespace FSO.Common.Rendering.Framework
|
|||
|
{
|
|||
|
public interface I3DGeometry {
|
|||
|
void DrawGeometry(GraphicsDevice gd);
|
|||
|
}
|
|||
|
}
|