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.
29 lines
382 B
29 lines
382 B
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() |
|
{ |
|
|
|
} |
|
|
|
}
|
|
|