魔兽3 ZINC

ZINC语言的基本语法。

1
2
3
4
5
6
7
8
9
10
11
12
13
//! zinc

library MapCore
{
function onInit()
{
TimerStart(CreateTimer(), 1.00, true, function() {
BJDebugMsg("111");
});
}
}

//! endzinc