10 lines
227 B
C#
10 lines
227 B
C#
using UnityEngine;
|
|
|
|
namespace Pinwheel.Griffin.PaintTool
|
|
{
|
|
public interface IGTexturePainterWithLivePreview
|
|
{
|
|
void Editor_DrawLivePreview(GStylizedTerrain terrain, GTexturePainterArgs args, Camera cam);
|
|
}
|
|
}
|