Renderer/net/character.json
2024-06-07 19:42:48 -04:00

58 lines
2.1 KiB
JSON

{
"outputPath" : "./src/main/java/electrosphere/net/parser/",
"packageName" : "electrosphere.net.parser",
"categories":[
{
"categoryName" : "Character",
"data" : [
{
"name" : "data",
"type" : "VAR_STRING"
}
],
"messageTypes" : [
{
"messageName" : "RequestCharacterList",
"description" : "Requests the list of characters from the server for the logged in user account",
"data" : []
},
{
"messageName" : "ResponseCharacterList",
"description" : "Gives the client the list of characters available to it",
"data" : [
"data"
]
},
{
"messageName" : "RequestCreateCharacter",
"description" : "Requests that the server create a new character with the data provided",
"data" : [
"data"
]
},
{
"messageName" : "ResponseCreateCharacterSuccess",
"description" : "Tells the client that it successfully created a character",
"data" : []
},
{
"messageName" : "ResponseCreateCharacterFailure",
"description" : "Tells the client that it failed to create a character",
"data" : []
},
{
"messageName" : "RequestSpawnCharacter",
"description" : "Requests that the server spawn the client in as a given character",
"data" : []
},
{
"messageName" : "ResponseSpawnCharacter",
"description" : "Deprecated - Unused",
"data" : [
"data"
]
}
]
}
]
}