11 lines
244 B
Java
11 lines
244 B
Java
package com.alterdekim.flash.decompiler.action;
|
|
|
|
import com.alterdekim.flash.decompiler.util.ActionField;
|
|
|
|
public class ActionAdd extends ByteCodeAction {
|
|
@Override
|
|
public ActionField getType() {
|
|
return ActionField.Add;
|
|
}
|
|
}
|