001package com.fs.starfarer.api;
002
003/**
004 * @author Alex Mosolov
005 *
006 * Copyright 2012 Fractal Softworks, LLC
007 */
008public interface Script {
009        
010        /**
011         * An aribtrary script that can be run by the game engine. 
012         * 
013         * Should return quickly since it will be executed on the main thread and could otherwise hold up the game. 
014         */
015        public void run();
016}