99jamin 7e275c029c DO-37 [Feat] 상점 일반 구매
일반 구매 구현 및 UI 적용
2025-03-19 17:47:49 +09:00

10 lines
152 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ShopItem
{
public string Name;
public int Price;
}