LuaPlay/main.lua
2025-08-27 19:44:15 +02:00

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