mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
27 lines
512 B
CoffeeScript
27 lines
512 B
CoffeeScript
|
module.exports =
|
||
|
"bus:connecting":
|
||
|
title: "Bus Connecting"
|
||
|
$schema: "http://json-schema.org/draft-04/schema#"
|
||
|
description: "Published when a Bus starts connecting"
|
||
|
type: "object"
|
||
|
properties:
|
||
|
bus:
|
||
|
$ref: "bus"
|
||
|
|
||
|
"bus:connected":
|
||
|
{} # TODO schema
|
||
|
|
||
|
"bus:disconnected":
|
||
|
{} # TODO schema
|
||
|
|
||
|
"bus:new-message":
|
||
|
{} # TODO schema
|
||
|
|
||
|
"bus:player-joined":
|
||
|
{} # TODO schema
|
||
|
|
||
|
"bus:player-left":
|
||
|
{} # TODO schema
|
||
|
|
||
|
"bus:player-states-changed":
|
||
|
{} # TODO schema
|