10 lines
239 B
C#
10 lines
239 B
C#
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>();
|
|
|
|
}
|