make working classes && add vscode config && add lua submodule

This commit is contained in:
2025-04-05 17:27:29 +05:00
parent 896579518c
commit 273e9edfc7
14 changed files with 337 additions and 241 deletions

9
tests/SystemColors.lua Normal file
View File

@@ -0,0 +1,9 @@
local syscalls = require("syscalls")
local SystemColors = syscalls.GetSystemColors()
print(SystemColors)
for i, v in pairs(SystemColors) do
print(i, v)
end