// // SMARTS cognitive science programming project (SMART subproject) // /** * The top-level class containing only the main method * and the step method that gets called whenever the world * is "stepped". * * @version 1.0, 8 Sep 2004 */ public class Smart { /** * The main method that is executed when the program is run. * Calls Beh.init(), initially the GUI for the * Smart world. * * @param args An optional filename for setting up the world. * The file must be located in the Data directory. * If no filename is provided, or if the file is not * found, the default world is used. */ public static void main(String args[]) { Beh.init(args); } /** * Gets called once whenever the "step" button is clicked and multiple times * whenever the "run" button is clicked. */ public static void step() { } } // class Smart