Added shaders and doomscript from the build.

This commit is contained in:
Justin Marshall
2026-08-09 04:23:10 -07:00
parent 82cfb1972d
commit 1d0c9d6657
734 changed files with 19587 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
/***********************************************************************
script_main.script
This is the main script that is loaded before any level scripts load.
***********************************************************************/
// these are automatically included by every script file
//#include "script_defs.script"
//#include "script_events.script"
// base defines and util functions
#include "script_util.script"
#include "debug_drawtext.script"
//#include "rage_npc.script"
void script_main() {
sys.print( "Entering script_main()\n");
//
// Do any script setup here
//
sys.print( "Exiting script_main()\n" );
}