mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
Finished minor refactorings
This commit is contained in:
parent
ba417630dc
commit
a07457acac
3 changed files with 11 additions and 77 deletions
|
@ -2,16 +2,16 @@ app = require 'application'
|
|||
|
||||
channelSchemas =
|
||||
'app': require './schemas/subscriptions/app'
|
||||
#'bus': require './schemas/subscriptions/bus'
|
||||
#'editor': require './schemas/subscriptions/editor'
|
||||
#'errors': require './schemas/subscriptions/errors'
|
||||
#'level': require './schemas/subscriptions/level'
|
||||
#'misc': require './schemas/subscriptions/misc'
|
||||
#'play': require './schemas/subscriptions/play'
|
||||
#'surface': require './schemas/subscriptions/surface'
|
||||
#'tome': require './schemas/subscriptions/tome'
|
||||
#'user': require './schemas/subscriptions/user'
|
||||
#'world': require './schemas/subscriptions/world'
|
||||
'bus': require './schemas/subscriptions/bus'
|
||||
'editor': require './schemas/subscriptions/editor'
|
||||
'errors': require './schemas/subscriptions/errors'
|
||||
'level': require './schemas/subscriptions/level'
|
||||
'misc': require './schemas/subscriptions/misc'
|
||||
'play': require './schemas/subscriptions/play'
|
||||
'surface': require './schemas/subscriptions/surface'
|
||||
'tome': require './schemas/subscriptions/tome'
|
||||
'user': require './schemas/subscriptions/user'
|
||||
'world': require './schemas/subscriptions/world'
|
||||
|
||||
definitionSchemas =
|
||||
'bus': require './schemas/definitions/bus'
|
||||
|
|
|
@ -1,66 +0,0 @@
|
|||
module.exports =
|
||||
# TODO location is debatable
|
||||
"echo-self-wizard-sprite":
|
||||
{} # TODO schema
|
||||
|
||||
"level:session-will-save":
|
||||
{} # TODO schema
|
||||
|
||||
"level-loader:progress-changed":
|
||||
{} # TODO schema
|
||||
|
||||
"level:shift-space-pressed":
|
||||
{} # TODO schema
|
||||
|
||||
"level:escape-pressed":
|
||||
{} # TODO schema
|
||||
|
||||
"level-enable-controls":
|
||||
{} # TODO schema
|
||||
|
||||
"level-set-letterbox":
|
||||
{} # TODO schema
|
||||
|
||||
"level:started":
|
||||
{} # TODO schema
|
||||
|
||||
"level-set-debug":
|
||||
{} # TODO schema
|
||||
|
||||
"level-set-grid":
|
||||
{} # TODO schema
|
||||
|
||||
"tome:cast-spell":
|
||||
{} # TODO schema
|
||||
|
||||
"level:restarted":
|
||||
{} # TODO schema
|
||||
|
||||
"level-set-volume":
|
||||
{} # TODO schema
|
||||
|
||||
"level-set-time":
|
||||
{} # TODO schema
|
||||
|
||||
"level-select-sprite":
|
||||
{} # TODO schema
|
||||
|
||||
"level-set-playing":
|
||||
{} # TODO schema
|
||||
|
||||
"level:team-set":
|
||||
{} # TODO schema
|
||||
|
||||
"level:docs-hidden":
|
||||
{} # TODO schema
|
||||
|
||||
"level:victory-hidden":
|
||||
{} # TODO schema
|
||||
|
||||
|
||||
|
||||
# TODO location is debatable
|
||||
"goal-manager:new-goal-states":
|
||||
{} # TODO schema
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
module.exports =
|
||||
# TODO There should be a better way to subdivide these channels
|
||||
# TODO There should be a better way to divide these channels into smaller ones
|
||||
|
||||
# TODO location is debatable
|
||||
"echo-self-wizard-sprite":
|
||||
|
|
Loading…
Reference in a new issue