ProjectDDD/Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Classes/SpriteData.cs
2025-07-15 13:01:35 +09:00

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;
}
}