using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace Ravenfield.Trigger
{
	public enum Team
	{
		Blue = 0,
		Red = 1,
		SameAsPlayer = 2,
		OtherThanPlayer = 3,
	}
}
