mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
Finished nc (notification center topic style refactoring) - fixes #60
This commit is contained in:
parent
cacd5d74c0
commit
76d9450257
9 changed files with 67 additions and 30 deletions
|
|
@ -42,15 +42,12 @@ function (Exception) {
|
|||
preloadBar: {
|
||||
update: null
|
||||
},
|
||||
fullScreen: {
|
||||
fullscreen: {
|
||||
change: null
|
||||
},
|
||||
debugMode: {
|
||||
toggle: null
|
||||
},
|
||||
gameInfo: {
|
||||
toggle: null
|
||||
},
|
||||
events: {
|
||||
ready: null
|
||||
}
|
||||
|
|
@ -63,9 +60,16 @@ function (Exception) {
|
|||
change: null
|
||||
}
|
||||
},
|
||||
server: {
|
||||
gameCommand: {
|
||||
send: null
|
||||
game: {
|
||||
gameInfo: {
|
||||
toggle: null
|
||||
}
|
||||
},
|
||||
to: {
|
||||
server: {
|
||||
gameCommand: {
|
||||
send: null
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -75,6 +79,9 @@ function (Exception) {
|
|||
add: null,
|
||||
remove: null
|
||||
},
|
||||
player: {
|
||||
killed: null
|
||||
},
|
||||
events: {
|
||||
level: {
|
||||
loaded: null
|
||||
|
|
@ -84,7 +91,10 @@ function (Exception) {
|
|||
},
|
||||
channel: {
|
||||
events: {
|
||||
controlCommand: null,
|
||||
controlCommand: {
|
||||
channel: null,
|
||||
user: null
|
||||
},
|
||||
user: {
|
||||
joined: null,
|
||||
left: null,
|
||||
|
|
@ -103,7 +113,9 @@ function (Exception) {
|
|||
},
|
||||
to: {
|
||||
server: {
|
||||
send: null
|
||||
controlCommand: {
|
||||
send: null
|
||||
}
|
||||
},
|
||||
client: {
|
||||
user: {
|
||||
|
|
@ -122,7 +134,10 @@ function (Exception) {
|
|||
},
|
||||
server: {
|
||||
events: {
|
||||
controlCommand: null,
|
||||
controlCommand: {
|
||||
coordinator: null,
|
||||
user: null
|
||||
},
|
||||
user: {
|
||||
joined: null,
|
||||
left: null
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue