001// Copyright (c) FIRST and other WPILib contributors. 002// Open Source Software; you can modify and/or share it under the terms of 003// the WPILib BSD license file in the root directory of this project. 004 005package org.wpilib.driverstation; 006 007/** The robot alliance that the robot is a part of. */ 008public enum Alliance { 009 /** Red alliance. */ 010 RED, 011 /** Blue alliance. */ 012 BLUE 013}