HandleMovement + Basic NavMesh
This commit is contained in:
parent
d4a32d9593
commit
47a59a5440
18 changed files with 3104 additions and 52 deletions
10
Assets/Scripts/GlobalsVariable.cs
Normal file
10
Assets/Scripts/GlobalsVariable.cs
Normal file
|
@ -0,0 +1,10 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public static class GlobalsVariable
|
||||
{
|
||||
public static List<Unit> AliveUnitsTeamA = new List<Unit>();
|
||||
public static List<Unit> AliveUnitsTeamB = new List<Unit>();
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue