if (bindType == valueBinding) {
//Detonator.INSTANCE.values.add(new Int(0));
Detonator.INSTANCE.localVars.add(new IntSlot());
}
if (bindType == localTriggerBinding) {
Detonator.INSTANCE.localTriggers.add(new BooleanSlot());
}
if (bindType == globalValueBinding) {
//Detonator.INSTANCE.globalValues.add(new Int(0));
Detonator.INSTANCE.vars.add(new IntSlot());
}
if (bindType == globalTriggerBinding) {
Detonator.INSTANCE.triggers.add(new BooleanSlot());
}
if (bindType == stringBinding) {
Detonator.INSTANCE.strings.add(new StringSlot());