Updated Interfaces (markdown)
parent
c879be5031
commit
75b0cc8efd
1 changed files with 3 additions and 3 deletions
|
@ -9,6 +9,6 @@ ggs_vm_runner:user_command(GameVM, User, Command, Args) -> ok
|
||||||
## ggs_server
|
## ggs_server
|
||||||
<pre>
|
<pre>
|
||||||
handle_cast(stop, State) -> {stop, normal, State}
|
handle_cast(stop, State) -> {stop, normal, State}
|
||||||
handle_cast({server, hello, Headers}, State) -> ok
|
handle_cast({server, hello, Headers}, State) -> {noreply, NewState}
|
||||||
handle_cast({server, define, Headers, Data}, State) -> ok
|
handle_cast({server, define, Headers, Data}, State) -> {noreply, NewState}
|
||||||
handle_cast({game, command, Headers, Data}, State) -> ok</pre>
|
handle_cast({game, command, Headers, Data}, State) -> {noreply, NewState}</pre>
|
Reference in a new issue