Add Audio and Shadow Class
This commit is contained in:
parent
63023152fe
commit
0f4d6c37e8
10 changed files with 479 additions and 2 deletions
24
Diffuse light/src/fr/technicalgames/render/gui/GLFont.java
Normal file
24
Diffuse light/src/fr/technicalgames/render/gui/GLFont.java
Normal 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);
|
||||
}
|
||||
|
||||
|
||||
}
|
Reference in a new issue