diff --git a/.classpath b/.classpath
index 21026e2..c248576 100644
--- a/.classpath
+++ b/.classpath
@@ -1,11 +1,9 @@
-
-
-
-
-
-
-
+
+
+
+
+
diff --git a/.gitignore b/.gitignore
index 7453573..3e3f64e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,3 +12,10 @@
hs_err_pid*
/.idea/
/bin/
+
+bin/*
+.project
+.classpath
+
+*.eml
+*.userlibraries
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 05cd510..2e15310 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -2,8 +2,11 @@
-
-
+
+
+
+
+
@@ -22,7 +25,7 @@
-
+
@@ -50,21 +53,11 @@
-
-
-
-
-
-
-
-
-
-
-
+
-
-
+
+
@@ -75,8 +68,8 @@
-
-
+
+
@@ -84,18 +77,22 @@
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
@@ -103,14 +100,10 @@
-
-
+
+
-
-
-
-
-
+
@@ -222,7 +215,6 @@
-
@@ -231,13 +223,14 @@
-
-
+
+
+
@@ -649,7 +642,7 @@
-
+
@@ -666,7 +659,7 @@
-
+
@@ -738,6 +731,7 @@
+
@@ -745,6 +739,7 @@
+
@@ -782,6 +777,7 @@
+
@@ -803,6 +799,7 @@
+
@@ -889,17 +886,11 @@
-
-
-
-
-
-
-
+
@@ -966,16 +957,6 @@
-
-
-
-
-
-
-
-
-
-
@@ -995,9 +976,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -1025,54 +1040,28 @@
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
diff --git a/.project b/.project
index c968209..2e5874d 100644
--- a/.project
+++ b/.project
@@ -1,14 +1,12 @@
Global-Gam-Jam-2017
-
-
-
+
+
org.eclipse.jdt.core.javabuilder
-
-
+
diff --git a/out/production/Global-Gam-Jam-2017/textures/fond.png b/out/production/Global-Gam-Jam-2017/textures/fond.png
new file mode 100644
index 0000000..26fac78
Binary files /dev/null and b/out/production/Global-Gam-Jam-2017/textures/fond.png differ
diff --git a/out/production/Global-Gam-Jam-2017/textures/perso.png b/out/production/Global-Gam-Jam-2017/textures/perso.png
new file mode 100644
index 0000000..052aac0
Binary files /dev/null and b/out/production/Global-Gam-Jam-2017/textures/perso.png differ
diff --git a/src/globalgamejam/render/Texture.java b/src/globalgamejam/render/Texture.java
index 90cbe19..4dc4719 100644
--- a/src/globalgamejam/render/Texture.java
+++ b/src/globalgamejam/render/Texture.java
@@ -28,7 +28,8 @@ public class Texture {
}
public static Texture loadFont(String text, Color color, String font, int size){
- Font f_font = new Font(font, Font.PLAIN, size);
+ text = text.toUpperCase();
+ Font f_font = new Font(font, Font.BOLD, size);
// to get the width of the text
BufferedImage img = new BufferedImage(1, 1, BufferedImage.TYPE_INT_ARGB);