-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathedittime.js
67 lines (47 loc) · 1.23 KB
/
edittime.js
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
function GetPluginSettings() {
return {
'name': 'SDK limpa',
'id': 'SDK_Limpa_p',
'version': '0.1',
'description': 'Esta SDK é limpa para uso',
'author': 'DeehLeh',
'help url': 'https://deehleh.itch.io',
'category': 'DeehLeh',
'type': 'object',
'flags': 0
}
}
////////////////////////////////////////
// Actions
////////////////////////////////////////
// Conditions
////////////////////////////////////////
// Expressions
////////////////////////////////////////
ACESDone()
const property_list = []
function CreateIDEObjectType() {
return new IDEObjectType()
}
function IDEObjectType() {
assert2(this instanceof arguments.callee, 'Constructor called as a function')
return {
CreateInstance: function(instance)
{
return new IDEInstance(instance)
}
}
}
function IDEInstance(instance, type) {
assert2(this instanceof arguments.callee, 'Constructor called as a function')
this.instance = instance
this.type = type
this.properties = {}
for (var i = 0; i < property_list.length; i++)
this.properties[property_list[i].name] = property_list[i].initial_value
}
IDEInstance.prototype = {
OnCreate: function () {
//
}
}