Skip to content

Commit

Permalink
Update empty project
Browse files Browse the repository at this point in the history
  • Loading branch information
Korshun committed May 7, 2016
1 parent c4c556b commit 83368fe
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions empty_project.acs
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
#library "myproject"

// Tell NewTid what is the first tid it may use:
#define TIDALLOCSTART 15000

// Your project's script numbers.
// Your project's scripts:
#define myproject_errorhandler 701

// Tell ACSUtils which script to send errors to:
// ACSUtils settings:
#define TIDALLOCSTART 15000
#define ACSUTILS_ERROR_HANDLER myproject_errorhandler

// Includes.
// Includes:
#include "zcommon.acs"
#include "acsutils.acs"

// Your project's error handler
// Your project's error handler:
script myproject_errorhandler (int type, int message)
{
Log(s:"error: ", s:message);
printbold(s:"error: ", s:message);
}

// Your project's code follows.

0 comments on commit 83368fe

Please sign in to comment.