-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlayout.txt
43 lines (31 loc) · 825 Bytes
/
layout.txt
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
-- ###############################
-- ## Project: MTA:Speedrace ##
-- ## Name: Script ##
-- ## Author: Noneatme ##
-- ## Version: 1.0 ##
-- ## License: See top Folder ##
-- ###############################
-- FUNCTIONS / METHODS --
local cFunc = {}; -- Local Functions
local cSetting = {}; -- Local Settings
Script = {};
Script.__index = Script;
--[[
]]
-- ///////////////////////////////
-- ///// New //////
-- ///////////////////////////////
function Script:New(...)
local obj = setmetatable({}, {__index = self});
if obj.Constructor then
obj:Constructor(...);
end
return obj;
end
-- ///////////////////////////////
-- ///// Constructor //////
-- ///////////////////////////////
function Script:Constructor(...)
logger:OutputInfo("[CALLING] Script: Constructor");
end
-- EVENT HANDLER --