diff --git a/README.md b/README.md
index e3e5c8a..78d2a30 100644
--- a/README.md
+++ b/README.md
@@ -20,20 +20,25 @@ You will then be prompted to select a track file from the selection by entering
> > 1=down-left
2=down
3=down-right
4=left
5=no acceleration
6=right
7=up-left
8=up
9=up-right
it is also possible to leave the game when it is your turn by entering 10
+ Move List Strategy
> For this strategy a predefined list of moves have to be given, the list may contain all allowed moves like mentioned in User Move Strategy
+> > To create your own Move List strategy it needs to be located in /racetrack/moves and be named as *track_name*-car-*character_of_car*.txt and be a txt file.
+ Path Follow Move Strategy
-> A list of point has to be given to the follow move strategy, the strategy will then calculate the route to cross each point in the given order.
+> A list of points given in a txt file where on each lime a coordinate is placed like (X:24, Y:22) gets used to calculate a path which makes the car cross each point.
+> > To create your own follow move strategy it needs to be located in /racetrack/moves and be named as *track_name*_points.txt and be a txt file.
+ Path Finder Strategy
> The pathfinder Strategy Calculates a route itself and follows it direction fully automatically.
The shown Track can be interpreted as following:
+'spaces' are part of the raceable track.
'#' is a Wall
'>,<,^,v' are finish line components
+'X' is shown if a car crashes at its crash location.
And every other character represents a car.
-
+> To create your own track it needs to be located inside /racetrack/tracks and be a txt file.
### Determining a winner
The winner gets determined automatically.
The car that first passes the finish line (doing a complete round) is given the win, if all car except one crash the surviving car will be crowned as the winner.
The game will inform you of this, and you will have the option to quit the game or play another match.
## Branching Model
-We choose a simple branching model where all starting features got a branch and where merged into the main branch, some branches who needed unfinished code to be completed where taken from the game branch but merged into the main at the end as well.
Since there was just one end product we abstained from using a development branch and merges where done straight into main.
+We choose a simple branching model where all starting features got a branch and where merged into the main branch, some branches who needed unfinished code to be completed where taken from the game branch but merged into the main at the end as well.
Since there was just one end product we abstained from using a development branch and merges where done straight into main branch.
## Class Diagramm
+![Classdiagramm of this program](/Klassendiagramm.drawio.svg)