14 lines
303 B
C#
14 lines
303 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
using UnityEditor;
|
|
|
|
namespace JBooth.MicroSplat.VertexPainter
|
|
{
|
|
// interface class for utilities that plug into the vertex painter window
|
|
public interface IVertexPainterUtility
|
|
{
|
|
string GetName();
|
|
void OnGUI(PaintJob[] jobs);
|
|
|
|
}
|
|
} |