-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCloudi_master.lua
More file actions
49 lines (35 loc) · 835 Bytes
/
Copy pathCloudi_master.lua
File metadata and controls
49 lines (35 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
--[[
Cloudi_master.lua
Master file for Cloudi
Generated on 2026-05-13.
by Sourcy Code Translator
(c) 2012 - radexx
Runtime version: 1.0
]]
-- Class definition
Cloudi = BaseClass(FightActor)
-- Add some attributes definitions to be filled later on
Cloudi.m_constants = {}
Cloudi.m_commands = {}
Cloudi.m_buttonsRemap = {}
-- Set the path of this file
require("debug")
local dpath = debug.getinfo(1, "S").source
Cloudi.m_path = dpath:match"@(.+/).+%..+"
-- Basic information
Cloudi._type = "Cloudi"
Cloudi.runtimeVersion = "1.0"
-- List of scripts
Cloudi.m_scriptList = {
"cloudi_cmd.lua",
"cloudi.lua",
"cloudcommon.lua",
}
-- Cloudi's constructor
function Cloudi:constructor()
-- Other attributes
self._class = Cloudi
end
-- First-time load of scripts
FightActor.reloadScripts(Cloudi)
return Cloudi