Some thinking about execution

This commit is contained in:
Adam
2014-12-01 14:37:19 -05:00
parent 0d50085e03
commit 228f650b6c
14 changed files with 131 additions and 18 deletions

View File

@@ -0,0 +1,11 @@
package info.sigterm.deob.execution;
public class Variables
{
private Object variables;
public Variables(int sz)
{
variables = new Object[sz];
}
}