diff --git a/.gitignore b/.gitignore
index ddd470e99b2e67f3219d485bb10e12ecedc30109..3ffd849da844b919a38f05941a153b3720675ea4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,2 @@
 .vscode/*
-README.md
+README.md
\ No newline at end of file
diff --git a/Tile.java b/Tile.java
index d6323a46f397b76fd71be9ba10bfbb02fea93da4..97b37b40526981aa431604145301cb45c91054ca 100644
--- a/Tile.java
+++ b/Tile.java
@@ -1,13 +1,20 @@
-
+/**
+ * This class is an Object that is used to represent a single Tile on the playing Board.
+ */
 public class Tile {
 
-    /**These Values are being set when initialized */
+    /**
+     * These Values are being set when initialized
+     */
     int owner = -1;
 
-    /**Initializer for Tile Objects */
+    /**
+     * Initializer for Tile Objects 
+     */
     public Tile(){}
 
-    /**Lets you set a new owner;
+    /**
+     * Lets you set a new owner;
      * -1 = no one; 0 = Player 1; 1 = Player 2
      * @param owner
      */
@@ -15,7 +22,8 @@ public class Tile {
         owner = player;
     }
 
-    /**Returns the owner
+    /**
+     * Returns the owner
      * -1 = no one; 0 = Player 1; 1 = Player 2
      * @return owner
      */
@@ -23,14 +31,16 @@ public class Tile {
         return owner;
     }
 
-    /**Returns if the Tile-owner is equal to the given Player
+    /**
+     * Returns if the Tile-owner is equal to the given Player
      * @param owner
      */
     public boolean isOwner(int player){
         return owner == player;
     }
 
-    /**Whether this Tile is owned by a Player
+    /**
+     * Whether this Tile is owned by a Player
      */
     public boolean existOwner(){
         return owner != -1;
diff --git a/textures/Icons.xcf b/textures/Icons.xcf
deleted file mode 100644
index c49d6b054d4ef2d1f26434e0f1acd0fca224632d..0000000000000000000000000000000000000000
Binary files a/textures/Icons.xcf and /dev/null differ