Forest_Client/Forest/Assets/Scripts/Gameplay/Level/Thumbtack.cs

14 lines
203 B
C#

using UnityEngine;
namespace Gameplay.Level
{
public class Thumbtack
{
public GameObject Obj;
public Thumbtack(GameObject obj)
{
Obj = obj;
}
}
}