refactore directory structure

This commit is contained in:
Chris Cochrun 2023-06-09 06:06:37 -05:00
parent 3830eef1f4
commit e87bfb7c39
485 changed files with 66 additions and 1696 deletions

View file

@ -0,0 +1,14 @@
RUBATO_DEF_RATE = 30
RUBATO_OVERRIDE_DT = true
RUBATO_DIR = (...):match("(.-)[^%.]+$").."rubato."
return {
--Overarching functions to set defaults
set_def_rate = function(rate) RUBATO_DEF_RATE = rate end,
set_override_dt = function(value) RUBATO_OVERRIDE_DT = value end,
--Modules
timed = require(RUBATO_DIR.."timed"),
easing = require(RUBATO_DIR.."easing"),
subscribable = require(RUBATO_DIR.."subscribable"),
}