9 lines
123 B
C#
9 lines
123 B
C#
using UnityEngine;
|
|
|
|
namespace DDD.Interfaces
|
|
{
|
|
public interface ISprite
|
|
{
|
|
Sprite Sprite { get; }
|
|
}
|
|
} |