/*
 * 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.events;

import scriptbuilder.structures.ScriptEvent;

/**
 * Data model for an audio event. Audio events have a filepath leading to an
 * audio file to be played, and a length in seconds of that file.
 *
 * @author Bryan McGuffin
 */
public class AudioEvent extends ScriptEvent
{

    public AudioEvent()
    {
        super(ScriptEventType.AUDIO_EVENT);
    }

    public Integer audioLength = 0;

    public String audioPath = "";
}
