Upload files to 'Turtle'

This commit is contained in:
manuel
2023-01-08 13:47:41 +00:00
parent 3a072d0848
commit 23dbfbed8b
2 changed files with 51 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
Turtle = {}
function Turtle:new(t)
t = t or {}
setmetatable(t, self)
self.__index = self
return t
end