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

14 lines
203 B
C#
Raw Normal View History

2024-06-12 15:01:54 +08:00
using UnityEngine;
namespace Gameplay.Level
{
public class Thumbtack
{
public GameObject Obj;
public Thumbtack(GameObject obj)
{
Obj = obj;
}
}
}