first commit

This commit is contained in:
cclecle
2023-05-24 17:01:45 +01:00
commit 1abe3efd36
59 changed files with 702 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
class ICCME_Event_Game_TimeLimit extends ICCME_Event_GameBase;
var int RemainingTime;
function doLog()
{
super.doLog();
log("RemainingTime:"@RemainingTime);
}
defaultproperties
{
RemainingTime=300
}