All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.legendofdragoon.scripting.MathHelper Maven / Gradle / Ivy

There is a newer version: 0.5.6
Show newest version
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