mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-04 08:51:03 +00:00
14 lines
186 B
Java
14 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);
|
||
|
}
|