mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-01 15:21:03 +00:00
13 lines
186 B
Java
13 lines
186 B
Java
package org.srb2.nativecode;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
public class Main {
|
|
private SRB2 srb2;
|
|
|
|
public Main(SRB2 srb2) {
|
|
this.srb2 = srb2;
|
|
}
|
|
|
|
public native int main(Video v);
|
|
}
|