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

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

Revision 1, 654 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 scriptbuilder.structures.ScriptEvent;
9
10/**
11 * Data model for an audio event. Audio events have a filepath leading to an
12 * audio file to be played, and a length in seconds of that file.
13 *
14 * @author Bryan McGuffin
15 */
16public class AudioEvent extends ScriptEvent
17{
18
19    public AudioEvent()
20    {
21        super(ScriptEventType.AUDIO_EVENT);
22    }
23
24    public Integer audioLength = 0;
25
26    public String audioPath = "";
27}
Note: See TracBrowser for help on using the repository browser.