/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package scriptbuilder.structures.units;

/**
 * Placeholder until I add some functionality. Represents an officer in a
 * vehicle on the map. Has a name, ID, position, and status, as well as several
 * other identifying factors.
 *
 * @author Bryan McGuffin
 */
public class Unit
{

    public String UnitNum = "";

    public String ID = "";

    public String Status = "";

    public String Master_Inc_Num = "";

    public String Primary = "";

    public String OOS = "";

    public String Type = "";

    public String Curr_Loc = "";

    public String Destination = "";

    public String Misc_Info = "";

    public String Stack = "";

    public String Area = "";

    public String Officer = "";

    public String Badge_Num = "";

    public String Timer = "";

    public String Office = "";

    public String P = "";

    public String Agy = "";

    public String Alias = "";

    public String Unit_Status = "";

}
