mysimulation/server/tso.common/Rendering/Framework/I3DGeometry.cs

9 lines
176 B
C#
Raw Permalink Normal View History

using Microsoft.Xna.Framework.Graphics;
namespace FSO.Common.Rendering.Framework
{
public interface I3DGeometry {
void DrawGeometry(GraphicsDevice gd);
}
}