plutonium/storage/t4/raw/scripts/mp/callbacks.gsc

21 lines
332 B
Plaintext
Raw Normal View History

2023-12-10 08:25:36 -05:00
#include common_scripts\utility;
#include maps\mp\_utility;
main()
{
level.callbackActorSpawned = ::Callback_ActorSpawned;
}
Callback_ActorSpawned()
{
/*
PrintConsole( "Callback_ActorSpawned:" );
PrintConsole( "self.classname: " + self.classname );
*/
}
CodeCallback_ActorSpawned()
{
self [[level.callbackActorSpawned]]();
}