/*
 * 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 a CCTV event. (Just a stub; CCTV events aren't currently
 * used.) A CCTV event has, for now, a string message.
 *
 * @author Bryan McGuffin
 */
public class CCTVEvent extends ScriptEvent
{

    public CCTVEvent()
    {
        super(ScriptEventType.CCTV_EVENT);
    }

    public String message = "";
}
