14 lines
235 B
Lua
14 lines
235 B
Lua
local m = require("test")
|
|
local f = require("objects")
|
|
|
|
m.test()
|
|
print(m.addtest(1, 2))
|
|
local fighter1 = f.Fighter:new({ name = "Fighter1", health = 100, speed = 10 })
|
|
|
|
local function param(a)
|
|
print(a)
|
|
end
|
|
|
|
param("Test")
|
|
|
|
-- fighter1
|