Neckrat 0293409dd9 camera refactor
Co-authored-by: Ivan Yuriev <ivanyr44@gmail.com>
2025-08-02 02:16:20 +03:00

18 lines
459 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--- Дерево (таблица таблиц) для хранения всего состояния игры
--- Типа при запуске загружаем в него сейв и потом оно работает
--- В love.update обновлять, в love.draw читать
local tree
local function instance()
tree = tree or {
wheelscroll = require "lib/wheelscroll"
}
return tree
end
return {
instance = instance
}