ProjectDDD/Assets/_DDD/_Scripts/GenerateGoogleSheets/AutoCreated/Classes/Monster.cs
2025-07-07 19:25:56 +09:00

24 lines
426 B (Stored with Git LFS)
C#

// <auto-generated>
using System;
using UnityEngine;
namespace DDD
{
[Serializable]
public class Monster
{
/// <summary>식별번호</summary>
[Tooltip("식별번호")]
public string Id;
/// <summary>이름</summary>
[Tooltip("이름")]
public string Name;
/// <summary>테스트1</summary>
[Tooltip("테스트1")]
public int T1;
}
}