Browse Source

cleaned up a couple of lines of no main consequence. But you want to get the template game right!

Charlie Patterson 12 years ago
parent
commit
621154612b

+ 4 - 1
templates/baseProject/main.cs

@@ -19,7 +19,10 @@
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 // IN THE SOFTWARE.
 //-----------------------------------------------------------------------------
-
+
+// debug amounts of log output
+setLogMode(6);
+// run game from the script files.  don't compile them first
 $Scripts::ignoreDSOs = true;
 
 ModuleDatabase.scanModules( "modules" );

+ 3 - 3
templates/baseProject/modules/BlankGame/1/main.cs

@@ -44,9 +44,9 @@ function BlankGame::create( %this )
     // load some scripts and variables
     // exec("./scripts/someScript.cs");
 
-echo("going to draw words");
-
-    BlankGame.sayHello();
+    // let's do a little something to make sure we are up and running.
+    // write "hello world!"  :)
+    %this.sayHello();
 }
 
 //-----------------------------------------------------------------------------