Advertisement
daixso

ScriptLoader.cpp

Jan 2nd, 2013
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #ifdef SCRIPTS
  2. /* This is where custom scripts' loading functions should be declared. */
  3. void AddSC_tc_teleporter();
  4. #endif
  5.  
  6. void AddCustomScripts()
  7. {
  8. #ifdef SCRIPTS
  9.     /* This is where custom scripts should be added. */
  10.     AddSC_tc_teleporter();
  11. #endif
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement