File tree 2 files changed +32
-30
lines changed
2 files changed +32
-30
lines changed Original file line number Diff line number Diff line change 19
19
new string ( ' ' , 2 ) ;
20
20
bool frame_a = false ;
21
21
Console . Clear ( ) ;
22
- Console . WriteLine ( @"
23
- Tug Of War
24
-
25
- Out pull your opponent in a rope pulling
26
- competition. Mash the [left]+[right] arrow
27
- keys and/or the [A]+[D] keys to pull on the
28
- rope. First player to pull the center of the
29
- rope into their boundary wins.
30
-
31
- Choose Your Opponent:
32
- [1] Easy.......2 mashes per second
33
- [2] Medium.....4 mashes per second
34
- [3] Hard.......8 mashes per second
35
- [4] Harder....16 mashes per second
36
- [escape] give up" ) ;
22
+ Console . Write ( """
23
+ Tug Of War
24
+
25
+ Out pull your opponent in a rope pulling
26
+ competition. Mash the [left]+[right] arrow
27
+ keys and/or the [A]+[D] keys to pull on the
28
+ rope. First player to pull the center of the
29
+ rope into their boundary wins.
30
+
31
+ Choose Your Opponent:
32
+ [1] Easy.......2 mashes per second
33
+ [2] Medium.....4 mashes per second
34
+ [3] Hard.......8 mashes per second
35
+ [4] Harder....16 mashes per second
36
+ [escape] give up
37
+ """ ) ;
37
38
int ? requiredMash = null ;
38
39
while ( requiredMash is null )
39
40
{
Original file line number Diff line number Diff line change @@ -27,21 +27,22 @@ public async Task Run()
27
27
new string ( ' ' , 2 ) ;
28
28
bool frame_a = false ;
29
29
await Console . Clear ( ) ;
30
- await Console . WriteLine ( @"
31
- Tug Of War
32
-
33
- Out pull your opponent in a rope pulling
34
- competition. Mash the [left]+[right] arrow
35
- keys and/or the [A]+[D] keys to pull on the
36
- rope. First player to pull the center of the
37
- rope into their boundary wins.
38
-
39
- Choose Your Opponent:
40
- [1] Easy.......2 mashes per second
41
- [2] Medium.....4 mashes per second
42
- [3] Hard.......8 mashes per second
43
- [4] Harder....16 mashes per second
44
- [escape] give up" ) ;
30
+ await Console . Write ( """
31
+ Tug Of War
32
+
33
+ Out pull your opponent in a rope pulling
34
+ competition. Mash the [left]+[right] arrow
35
+ keys and/or the [A]+[D] keys to pull on the
36
+ rope. First player to pull the center of the
37
+ rope into their boundary wins.
38
+
39
+ Choose Your Opponent:
40
+ [1] Easy.......2 mashes per second
41
+ [2] Medium.....4 mashes per second
42
+ [3] Hard.......8 mashes per second
43
+ [4] Harder....16 mashes per second
44
+ [escape] give up
45
+ """ ) ;
45
46
int ? requiredMash = null ;
46
47
while ( requiredMash is null )
47
48
{
You can’t perform that action at this time.
0 commit comments