ggs_logger got lost somewhere? I added it again, also replaced all references to helpers with ggs_logger

This commit is contained in:
Jonatan Pålsson 2011-02-17 08:33:55 +01:00
parent ea1557e2d7
commit 94d9dc6d7f
5 changed files with 23 additions and 15 deletions

View file

@ -20,19 +20,19 @@ start_link(Socket) ->
%% @spec notify(Player::Pid(), From::Pid(),
%% {Command::String(), Message::string()}) -> ok
notify(Player, From, Message) ->
helpers:not_implemented().
ggs_logger:not_implemented().
%% @doc Get the player token uniquely representing the player.
%% @spec get_token() -> string()
get_token(_Player) ->
helpers:not_implemented().
ggs_logger:not_implemented().
%% @doc Properly terminates the player process. The player token will be lost
%% together with the table token. It should also close the player socket and the
%% process should return in the end.
%% @spec stop(Table::pid()) -> Reason::string()
stop(_Player,_Table) ->
helpers:not_implemented().
ggs_logger:not_implemented().
%% Internals