Removed the source folder since the whole game is the source.

This commit is contained in:
Entarno54 2025-05-28 11:24:15 +07:00
parent 88dcc324b5
commit 30936c14c0
9 changed files with 18 additions and 18 deletions

View File

@ -1,14 +1,14 @@
local Height = 0
local Width = 0
local myMath = require("source.modules.math")
local myTypes = require("source.modules.types")
local conductor = require("source.modules.conductor")
local json = require("source.modules.json")
local files = require("source.modules.files")
local logger = require("source.modules.logging")
local myMath = require("modules.math")
local myTypes = require("modules.types")
local conductor = require("modules.conductor")
local json = require("modules.json")
local files = require("modules.files")
local logger = require("modules.logging")
local socket = require("socket")
local logging= require("source.modules.logging")
local logging= require("modules.logging")
local newVector2 = myTypes.Vector2(10, 10)

View File

@ -1,5 +1,5 @@
local myMath = require("source.modules.math")
local logging = require("source.modules.logging")
local myMath = require("modules.math")
local logging = require("modules.logging")
local conductor = {}
conductor.bpm = 120

View File

@ -1,11 +1,11 @@
local module = {}
local myMath = require("source.modules.math")
local files = require("source.modules.files")
local logging = require("source.modules.logging")
local json = require("source.modules.json")
local noteclass = require("source.modules.types.note")
local characterclass = require("source.modules.types.character")
local myMath = require("modules.math")
local files = require("modules.files")
local logging = require("modules.logging")
local json = require("modules.json")
local noteclass = require("modules.types.note")
local characterclass = require("modules.types.character")
local Vector2 = {}
Vector2.__index = Vector2

View File

@ -1,8 +1,8 @@
local module = {}
-- local myTypes = require("source.modules.types")
local files = require("source.modules.files")
local json = require("source.modules.json")
-- local myTypes = require("modules.types")
local files = require("modules.files")
local json = require("modules.json")
local CharacterClass = {}
CharacterClass.__index = CharacterClass