Warning: Can't use blame annotator:
svn blame failed on src/scriptbuilder/structures/events/CHPRadioEvent.java: ("Can't find a temporary directory: Internal error", 20014)

source: tmcsimulator-scriptbuilder/src/scriptbuilder/structures/events/CHPRadioEvent.java @ 1

Revision 1, 848 bytes checked in by bmcguffin, 9 years ago (diff)

2017/07/18: Uploaded entire prototype to SVN repo.

RevLine 
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 */
6package scriptbuilder.structures.events;
7
8import java.util.ArrayList;
9import scriptbuilder.structures.ScriptEvent;
10
11/**
12 * Data model for a CHP radio event. A CHP radio transmission has a
13 * conversation, with dialog between a field unit and a dispatch center. It also
14 * has an audio file which has that conversation acted out.
15 *
16 * @author Bryan McGuffin
17 */
18public class CHPRadioEvent extends ScriptEvent
19{
20
21    public CHPRadioEvent()
22    {
23        super(ScriptEventType.CHP_RADIO_EVENT);
24    }
25
26    public ArrayList<String> lines = new ArrayList<String>();
27
28    public ArrayList<String> roles = new ArrayList<String>();
29
30    public String radioFile = "";
31
32}
Note: See TracBrowser for help on using the repository browser.