Files
CortexCore 84ea82581f 1
2023-12-30 17:37:48 +08:00

12 lines
287 B
C#

using System.Collections.Generic;
namespace Pinwheel.Griffin.PaintTool
{
public interface IGObjectPainter
{
string Instruction { get; }
List<System.Type> SuitableFilterTypes { get; }
void Paint(GStylizedTerrain terrain, GObjectPainterArgs args);
}
}