HandleMovement + Basic NavMesh

This commit is contained in:
Crizomb 2024-12-23 01:32:01 +01:00
parent d4a32d9593
commit 47a59a5440
18 changed files with 3104 additions and 52 deletions

View 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>();
}