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

9 lines
123 B
C#
Raw Normal View History

2024-09-10 10:25:05 +00:00
using UnityEngine;
2025-02-10 02:13:46 +00:00
namespace DDD.Interfaces
2024-09-10 10:25:05 +00:00
{
public interface ISprite
{
Sprite Sprite { get; }
}
}