From 75b0cc8efd677d4a15710344966da668a4340e92 Mon Sep 17 00:00:00 2001 From: jeena Date: Mon, 14 Feb 2011 12:53:04 -0800 Subject: [PATCH] Updated Interfaces (markdown) --- Interfaces.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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