summaryrefslogtreecommitdiff
path: root/NET/worlds/scape/Properties.java
blob: f75b5f4b8075e6e12fc06c4fc9fbae05d68335fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package NET.worlds.scape;

public interface Properties {
   int ENUM = 0;
   int GET = 1;
   int SET = 2;
   int ADD = 3;
   int DEL = 4;
   int ADD_TEST = 5;

   Object properties(int var1, int var2, int var3, Object var4) throws NoSuchPropertyException;

   Object propertyParent();
}