Files
RaindropViewer/Assets/Raindrop/UI/map/MapEntity.cs
T

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()
{
}
}