org.legendofdragoon.scripting.MathHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of script-recompiler Show documentation
Show all versions of script-recompiler Show documentation
Tools for working with Legend of Dragoon scripts
package org.legendofdragoon.scripting;
public class MathHelper {
public static int get(final byte[] data, final int offset, final int size) {
int value = 0;
for(int i = 0; i < size; i++) {
value |= (data[offset + i] & 0xff) << i * 8;
}
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy