PalacePal/Pal.Client/Rendering/IDrawDebugItems.cs

10 lines
181 B
C#
Raw Normal View History

2023-02-08 15:06:43 +00:00
using System.Numerics;
namespace Pal.Client.Rendering
{
internal interface IDrawDebugItems
{
void DrawDebugItems(Vector4 trapColor, Vector4 hoardColor);
}
}