25 lines
574 B
C#
25 lines
574 B
C#
![]() |
// <auto-generated>
|
||
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace DDD
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class SpriteData : IId
|
||
|
{
|
||
|
/// <summary>식별번호</summary>
|
||
|
[Tooltip("식별번호")]
|
||
|
[field: SerializeField]
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
/// <summary>Addressable 이미지 이름</summary>
|
||
|
[Tooltip("Addressable 이미지 이름")]
|
||
|
public Sprite Sprite;
|
||
|
|
||
|
/// <summary>유니티 내의 이미지 크기</summary>
|
||
|
[Tooltip("유니티 내의 이미지 크기")]
|
||
|
public int Size;
|
||
|
|
||
|
}
|
||
|
}
|