Add Audio and Shadow Class

This commit is contained in:
Florian Richer (MrDev023) 2016-03-12 17:59:49 +01:00
parent 63023152fe
commit 0f4d6c37e8
10 changed files with 479 additions and 2 deletions

View file

@ -0,0 +1,24 @@
package fr.technicalgames.render.gui;
import java.awt.*;
import java.awt.image.*;
import java.nio.*;
public class GLFont {
private Font font;
private int textureFont;
public GLFont(String name,int style,int size){
this.font = new Font(name, style, size);
}
public GLFont(){
this("Verdana",Font.BOLD,24);
}
}