10 lines
181 B
C#
10 lines
181 B
C#
using System.Numerics;
|
|
|
|
namespace Pal.Client.Rendering
|
|
{
|
|
internal interface IDrawDebugItems
|
|
{
|
|
void DrawDebugItems(Vector4 trapColor, Vector4 hoardColor);
|
|
}
|
|
}
|