~vcs-imports/skycastle/trunk

« back to all changes in this revision

Viewing changes to modules/client/src/main/java/org/skycastle/client/model/old/properties/PropertyReference.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
 
package org.skycastle.client.model.old.properties;
2
 
 
3
 
import org.skycastle.client.model.old.GameObjectId;
4
 
 
5
 
/**
6
 
 * A reference to a specific property in a specific game object.
7
 
 */
8
 
public interface PropertyReference
9
 
{
10
 
    GameObjectId getgameObjectid();
11
 
 
12
 
    String getPropertyIdentifier();
13
 
}
14