Initial commit pt.2 - Environment setup

This commit is contained in:
Sebastian Cabrera 2023-05-26 11:28:23 -04:00
parent 13434a4e7e
commit 692b77b133
8 changed files with 616 additions and 0 deletions

View file

@ -0,0 +1,9 @@
package com.okseby.Main;
import org.lwjgl.Version;
public class Launcher {
public static void main(String[] args) {
System.out.println("LWJGL Version: " + Version.getVersion());
}
}