CapersProject/Assets/02.Scripts/Interface/ISprite.cs

9 lines
129 B
C#
Raw Normal View History

2024-09-10 10:25:05 +00:00
using UnityEngine;
namespace BlueWater.Interfaces
{
public interface ISprite
{
Sprite Sprite { get; }
}
}