Skip to content

Commit 7d4c0cc

Browse files
committed
Other: Tweak README.
1 parent 5185554 commit 7d4c0cc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
- Command-line and UI variants.
99
- Strips comments, `using` directives, and `namespace` blocks
1010
- Outputs a single readable output file with the following features:
11-
-File headers
12-
-Line numbers
13-
-Cleaned source code
11+
- File headers
12+
- Line numbers
13+
- Cleaned source code
1414
- Skips generated and irrelevant files (e.g. `.designer.cs`, `bin`, `obj`, `.resx`, etc.)
1515

1616
## Command Line Usage
@@ -32,20 +32,20 @@ CodeIngest *.cs;*.cpp SourceDump.code
3232
// File: GameState.cs
3333
20|public class GameState:IAiGameState
3434
21|{
35-
22|private readonly Vector2[] m_bats;
35+
22|private readonly Vector2[]m_bats;
3636
23|private readonly Vector2 m_ballPosition;
3737
24|private readonly Vector2 m_ballVelocity;
3838
25|private readonly int m_arenaWidth;
3939
26|private readonly int m_arenaHeight;
40-
28|public GameState(Vector2[] bats,Vector2 ballPosition,Vector2 ballVelocity,int arenaWidth,int arenaHeight)
40+
28|public GameState(Vector2[]bats,Vector2 ballPosition,Vector2 ballVelocity,int arenaWidth,int arenaHeight)
4141
29|{
4242
30|m_bats=bats;
4343
31|m_ballPosition=ballPosition;
4444
32|m_ballVelocity=ballVelocity;
4545
33|m_arenaWidth=arenaWidth;
4646
34|m_arenaHeight=arenaHeight;
4747
35|}
48-
37|public double[] ToInputVector()
48+
37|public double[]ToInputVector()
4949
38|{
5050
39|var inputVector=new double[Brain.BrainInputCount];
5151
42|inputVector[0]=m_bats[0].Y/m_arenaHeight*2.0f-1.0f;

0 commit comments

Comments
 (0)