32 lines
654 B (Stored with Git LFS)
C#
32 lines
654 B (Stored with Git LFS)
C#
// <auto-generated>
|
|
using System;
|
|
using UnityEngine;
|
|
|
|
namespace DDD
|
|
{
|
|
[Serializable]
|
|
public class Item
|
|
{
|
|
/// <summary>식별번호</summary>
|
|
[Tooltip("식별번호")]
|
|
public string Id;
|
|
|
|
/// <summary>이름</summary>
|
|
[Tooltip("이름")]
|
|
public string Name;
|
|
|
|
/// <summary>아이템타입</summary>
|
|
[Tooltip("아이템타입")]
|
|
public ItemType ItemType;
|
|
|
|
/// <summary>셀크기X</summary>
|
|
[Tooltip("셀크기X")]
|
|
public int CellSizeX;
|
|
|
|
/// <summary>셀크기Y</summary>
|
|
[Tooltip("셀크기Y")]
|
|
public int CellSizeY;
|
|
|
|
}
|
|
}
|