This commit is contained in:
Imbus 2025-08-27 19:44:15 +02:00
commit c0b5de5a4f
5 changed files with 161 additions and 0 deletions

14
main.lua Normal file
View file

@ -0,0 +1,14 @@
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