~mchaten/gg/main

« back to all changes in this revision

Viewing changes to main/client/src/net/sf/goodgame/client/user/FriendsListener.java

  • Committer: mchaten
  • Date: 2009-04-22 02:40:45 UTC
  • Revision ID: mchaten@gmail.com-20090422024045-si6svkz6uwv5tie9
New Class GUIDispatcher to execute all things related to the GUI on the event thread.
Put the friend and userinfo classes in their own packages inside of client.user
Remove old debug message in MutableNetworkMessage

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package net.sf.goodgame.client.user;
2
 
 
3
 
public interface FriendsListener
4
 
{
5
 
    public void addFriend(String username);
6
 
    public void removeFriend(String username);
7
 
    public void friendLoggedIn(String username);
8
 
    public void friendLoggedOut(String username);
9
 
}
 
 
b'\\ No newline at end of file'