Commenting
class Main
{
# this function is called everytime the game starts
function OnGameStart()
{
# spawn some titans
Game.SpawnTitans("Default", 5);
/*
this is a comment block
that takes up multiple lines
*/
return;
}
Last updated