20 lines
356 B (Stored with Git LFS)
C#
20 lines
356 B (Stored with Git LFS)
C#
// <auto-generated>
|
|
using System;
|
|
using UnityEngine;
|
|
[Serializable]
|
|
public class Monster
|
|
{
|
|
/// <summary>식별번호</summary>
|
|
[Tooltip("식별번호")]
|
|
public string Id;
|
|
|
|
/// <summary>이름</summary>
|
|
[Tooltip("이름")]
|
|
public string Name;
|
|
|
|
/// <summary>테스트1</summary>
|
|
[Tooltip("테스트1")]
|
|
public int T1;
|
|
|
|
}
|