Files
runelite/src/main/java/info/sigterm/deob/execution/ObjectInstanceBase.java
2014-12-05 16:26:07 -05:00

20 lines
294 B
Java

package info.sigterm.deob.execution;
public abstract class ObjectInstanceBase
{
private Path path;
private ClassInstance type;
public ObjectInstanceBase(Path path, ClassInstance type)
{
this.path = path;
this.type = type;
}
public ClassInstance getType()
{
return type;
}
}