This reverts commit a6846bb41deea026602bc2f4cf3da9ffbcbba94b, reversing changes made to c8f59a7080b2b2896248c04952ae9383a54f0ddf.
10 lines
155 B
C#
10 lines
155 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class ShopItem
|
|
{
|
|
public string Name;
|
|
public string Price;
|
|
}
|