Add CPos.New etc functions to Lua standard library and helpers to LuaScriptInterface.cs. Rename Team.Create to Team.New.

This commit is contained in:
ScottNZ
2013-12-16 19:01:54 +13:00
parent 8e9835f2fa
commit b2e9de810e
9 changed files with 117 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
Team = { }
Team.Create = function(actors)
Team.New = function(actors)
local team = { }
team.Actors = actors
team.OnAllKilled = { }