summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Unit/Components/UnitComponent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Scripts/Unit/Components/UnitComponent.cs')
-rw-r--r--Assets/Scripts/Unit/Components/UnitComponent.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Assets/Scripts/Unit/Components/UnitComponent.cs b/Assets/Scripts/Unit/Components/UnitComponent.cs
index a5034581..825b6d92 100644
--- a/Assets/Scripts/Unit/Components/UnitComponent.cs
+++ b/Assets/Scripts/Unit/Components/UnitComponent.cs
@@ -29,6 +29,10 @@ public class UnitComponent : MonoBehaviour
m_Owner = GetComponent<UnitController>();
}
+ public virtual void OnPostInitialize()
+ {
+ }
+
public virtual void Release()
{
m_Owner = null;