More execution stuff

This commit is contained in:
Adam
2014-12-02 12:02:29 -05:00
parent 4a24560be5
commit 37dac95ee0
69 changed files with 1563 additions and 110 deletions

View File

@@ -2,10 +2,20 @@ package info.sigterm.deob.execution;
public class Variables
{
private Object variables;
private Object[] variables;
public Variables(int sz)
{
variables = new Object[sz];
}
public void set(int index, Object value)
{
variables[index] = value;
}
public Object get(int index)
{
return variables[index];
}
}