11 lines
200 B
C#
11 lines
200 B
C#
using UnityEngine;
|
|
|
|
namespace Northbound.Editor
|
|
{
|
|
public interface IPrefabSetup
|
|
{
|
|
string GetTemplateName();
|
|
void SetupPrefab(GameObject prefab, ScriptableObject data);
|
|
}
|
|
}
|