Files
RaindropViewer/Assets/Raindrop/UI/Map/MapEntity.cs
T
2022-03-28 21:29:45 +08:00

23 lines
393 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
//exposes api to that sets/gets the enitity at region coordinates
public class MapEntity : MonoBehaviour
{
private MapEntityData data;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}