Skip to content

Commit 7202692

Browse files
Update README.md
1 parent 53767b8 commit 7202692

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,14 @@ If you don't want to use Gradle, you have 2 other options:
4444

4545
##Write some code
4646

47-
1. Make a player class. It should extend from AbstractPlayer.
48-
47+
- Make a player class. It should extend from AbstractPlayer.
4948
```java
5049
import com.nmerrill.kothcomm.game.players.AbstractPlayer;
5150
public abstract class TestPlayer extends AbstractPlayer<TestPlayer> {
5251
//This is the public API for submissions. Put the methods that they will need to implement here
5352
}
5453
```
55-
56-
2. Make a game class. It should extend from AbstractGame. If your game has a fixed number of iterations, you can use IteratedGame. If your game will run off of an Action queue, you can use ActionQueueGame or MaxActionQueueGame.
57-
54+
- Make a game class. It should extend from AbstractGame. If your game has a fixed number of iterations, you can use IteratedGame. If your game will run off of an Action queue, you can use ActionQueueGame or MaxActionQueueGame.
5855
```java
5956
import com.nmerrill.kothcomm.game.scoring.Scoreboard;
6057

@@ -84,9 +81,7 @@ public class TestGame extends AbstractGame<TestPlayer> {
8481
}
8582
}
8683
```
87-
88-
3. Make a main class:
89-
84+
- Make a main class:
9085
```java
9186
import com.nmerrill.kothcomm.game.KotHComm;
9287

0 commit comments

Comments
 (0)