You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
382 B
30 lines
382 B
12 months ago
|
using System.Collections;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class SelectableUnit : MonoBehaviour
|
||
|
{
|
||
|
public float selectionSize;
|
||
|
public bool playerOwned = true;
|
||
|
|
||
|
public virtual void OnBeginSelection()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public virtual void OnEndSelection()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public virtual void OnBeginHover()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public virtual void OnEndHover()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|