| Revision 1,
1.1 KB
checked in by bmcguffin, 9 years ago
(diff) |
|
2017/07/18: Uploaded entire prototype to SVN repo.
|
| Rev | Line | |
|---|
| 1 | /* |
|---|
| 2 | * To change this license header, choose License Headers in Project Properties. |
|---|
| 3 | * To change this template file, choose Tools | Templates |
|---|
| 4 | * and open the template in the editor. |
|---|
| 5 | */ |
|---|
| 6 | package scriptbuilder.structures.units; |
|---|
| 7 | |
|---|
| 8 | /** |
|---|
| 9 | * Placeholder until I add some functionality. Represents an officer in a |
|---|
| 10 | * vehicle on the map. Has a name, ID, position, and status, as well as several |
|---|
| 11 | * other identifying factors. |
|---|
| 12 | * |
|---|
| 13 | * @author Bryan McGuffin |
|---|
| 14 | */ |
|---|
| 15 | public class Unit |
|---|
| 16 | { |
|---|
| 17 | |
|---|
| 18 | public String UnitNum = ""; |
|---|
| 19 | |
|---|
| 20 | public String ID = ""; |
|---|
| 21 | |
|---|
| 22 | public String Status = ""; |
|---|
| 23 | |
|---|
| 24 | public String Master_Inc_Num = ""; |
|---|
| 25 | |
|---|
| 26 | public String Primary = ""; |
|---|
| 27 | |
|---|
| 28 | public String OOS = ""; |
|---|
| 29 | |
|---|
| 30 | public String Type = ""; |
|---|
| 31 | |
|---|
| 32 | public String Curr_Loc = ""; |
|---|
| 33 | |
|---|
| 34 | public String Destination = ""; |
|---|
| 35 | |
|---|
| 36 | public String Misc_Info = ""; |
|---|
| 37 | |
|---|
| 38 | public String Stack = ""; |
|---|
| 39 | |
|---|
| 40 | public String Area = ""; |
|---|
| 41 | |
|---|
| 42 | public String Officer = ""; |
|---|
| 43 | |
|---|
| 44 | public String Badge_Num = ""; |
|---|
| 45 | |
|---|
| 46 | public String Timer = ""; |
|---|
| 47 | |
|---|
| 48 | public String Office = ""; |
|---|
| 49 | |
|---|
| 50 | public String P = ""; |
|---|
| 51 | |
|---|
| 52 | public String Agy = ""; |
|---|
| 53 | |
|---|
| 54 | public String Alias = ""; |
|---|
| 55 | |
|---|
| 56 | public String Unit_Status = ""; |
|---|
| 57 | |
|---|
| 58 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.