~vcs-imports/skycastle/trunk

« back to all changes in this revision

Viewing changes to modules/client/src/main/java/org/skycastle/client/ClientObject.java

  • Committer: zzorn
  • Date: 2008-11-10 14:55:40 UTC
  • Revision ID: vcs-imports@canonical.com-20081110145540-l1hvmkbhnd0612ws
Fixed compile: removed packages of unused code, updated to use new Darkstar API, moved external library versions to the master pom.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package org.skycastle.client;
2
2
 
3
 
import org.skycastle.core.old.*;
4
 
import org.skycastle.core.old.acting.ActionImpl;
5
 
import org.skycastle.ui.*;
6
 
import org.skycastle.util.parameters.metadata.ParameterSetMetadataImpl;
 
3
import org.skycastle.core.old.GameObject;
7
4
 
8
5
/**
9
6
 * Client services wrapped in a client side {@link GameObject}.
11
8
 * @author Hans Haggstrom
12
9
 */
13
10
public final class ClientObject
14
 
        extends DefaultGameObject
 
11
//        extends DefaultGameObject
15
12
{
 
13
/*
16
14
 
17
15
    //======================================================================
18
16
    // Private Fields
30
28
    //----------------------------------------------------------------------
31
29
    // Other Public Methods
32
30
 
33
 
    /**
 
31
    */
 
32
/**
34
33
     * Starts the client - sets up some actions, and opens the UI.
35
34
     */
 
35
/*
36
36
    public void start()
37
37
    {
38
38
        setupActions();
150
150
    }
151
151
 
152
152
 
 
153
*/
153
154
}