mirror of
https://github.com/ConjureETS/Human-Farm-Tycoon.git
synced 2026-03-24 02:11:07 +00:00
38 lines
429 B
C#
38 lines
429 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class Maison
|
|
{
|
|
private Vector2 position;
|
|
protected readonly int MAX_CARACTERES = 10;
|
|
|
|
|
|
public Maison()
|
|
{
|
|
position = new Vector2(0, 0);
|
|
}
|
|
|
|
|
|
Maison(Vector2 position)
|
|
{
|
|
this.position = position;
|
|
}
|
|
|
|
Vector2 getPosition()
|
|
{
|
|
return position;
|
|
}
|
|
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
void update()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|