mirror of
https://github.com/Steffo99/octogem.git
synced 2024-11-22 04:54:18 +00:00
11 lines
No EOL
226 B
C#
11 lines
No EOL
226 B
C#
using UnityEngine;
|
|
|
|
public class GenericPosition : MonoBehaviour
|
|
{
|
|
protected MapPosition position;
|
|
public virtual MapPosition Position
|
|
{
|
|
get { return position; }
|
|
set { position = value; }
|
|
}
|
|
} |