refactor some old shit

This commit is contained in:
neckrat 2025-10-13 00:08:34 +03:00
parent 4b3df0ae24
commit 490452031b

View File

@ -13,12 +13,11 @@ character.__index = character
--- Создаёт персонажа, которым будет управлять или игрок или компьютер
--- @param name string
--- @param template ClassTemplate
--- @param spriteDir table
--- @param position? Vec3
--- @param size? Vec3
--- @param level? integer
local function spawn(name, template, spriteDir, position, size, level)
local function spawn(name, spriteDir, position, size, level)
local char = {}
char = setmetatable(char, character)