diff --git a/Interfaces.md b/Interfaces.md index 58b60db..7d4130a 100644 --- a/Interfaces.md +++ b/Interfaces.md @@ -9,6 +9,6 @@ ggs_vm_runner:user_command(GameVM, User, Command, Args) -> ok ## ggs_server
 handle_cast(stop, State) -> {stop, normal, State}
-handle_cast({server, hello, Headers}, State) -> ok
-handle_cast({server, define, Headers, Data}, State) -> ok
-handle_cast({game, command, Headers, Data}, State) -> ok
\ No newline at end of file +handle_cast({server, hello, Headers}, State) -> {noreply, NewState} +handle_cast({server, define, Headers, Data}, State) -> {noreply, NewState} +handle_cast({game, command, Headers, Data}, State) -> {noreply, NewState} \ No newline at end of file