1
Fork 0
mirror of https://github.com/Steffo99/octogem.git synced 2024-11-22 13:04:19 +00:00
octogem/Assets/Scripts/Components/Position/GenericPosition.cs

11 lines
226 B
C#
Raw Normal View History

2018-09-26 22:38:49 +00:00
using UnityEngine;
public class GenericPosition : MonoBehaviour
{
2018-09-30 14:35:17 +00:00
protected MapPosition position;
public virtual MapPosition Position
{
get { return position; }
set { position = value; }
}
2018-09-26 22:38:49 +00:00
}