14 lines
190 B
C#
14 lines
190 B
C#
using UnityEngine;
|
|
|
|
namespace INab.BetterFog.Runtime
|
|
{
|
|
public interface IGradientTextureForEditor
|
|
{
|
|
void CreateTexture();
|
|
|
|
Texture2D GetTexture();
|
|
|
|
void LoadExisitingTexture();
|
|
}
|
|
}
|