コード例 #1
0
 public static NativeFunctionCall readFrom(BytecodeInput input, int nativeIndex)
     throws IOException {
   return new NativeFunctionCall(nativeIndex, input.readFunctionParams());
 }
コード例 #2
0
ファイル: DefaultVariable.java プロジェクト: gyod/l2io
 public static DefaultVariable readFrom(BytecodeInput input) throws IOException {
   return new DefaultVariable(input.readCompactInt());
 }