[BUGFIX] Added Interface#getLongStackSizes

This commit is contained in:
JKetelaar
2015-12-30 18:11:37 +01:00
parent c16f385d90
commit e508d25d1f
@@ -6,6 +6,13 @@ public interface Interface {
public int[] getStackSizes();
/**
* This is meant for the clients that have a long value as their stacksizes, simply because they have no logic...
*
* @return long version of #getStackSizes
*/
public long[] getLongStackSizes();
public String getMessage();
}