refactor: moved drawable triangles into systems project for platform agnosticism
This commit is contained in:
8
Engine.Systems/Graphics/IDrawableTriangle.cs
Normal file
8
Engine.Systems/Graphics/IDrawableTriangle.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using Engine.Core;
|
||||
|
||||
namespace Engine.Systems.Graphics;
|
||||
|
||||
public interface IDrawableTriangle : IBehaviour
|
||||
{
|
||||
void Draw(ITriangleBatch triangleBatch);
|
||||
}
|
||||
Reference in New Issue
Block a user