-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInstructions.cs
38 lines (30 loc) · 1.22 KB
/
Instructions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using Raylib_cs;
using generalNamespace;
using static Raylib_cs.Raylib;
using static Raylib_cs.Color;
namespace CSE210_06_Final_Project;
public static class instructions
{
public static void loadScreen()
{
Raylib.BeginDrawing();
Raylib.DrawTexture(ImageService.spacebgTexture,0,0,Color.WHITE);
Raylib.DrawText("Instructions", 470, 50, 75, Color.WHITE);
Raylib.DrawText("Move Up\n" +
"Move Backward\n" +
"Move Forward\n" +
"Move Down\n" +
"Fire Weapons\n" +
"Repair Ship (-100 Coins)\n" +
"Gamble (-50 Coins)" , 340, 240, 25, Color.WHITE);
Raylib.DrawText("= [W] or [^]\n" +
"= [A] or [<]\n" +
"= [D] or [>]\n" +
"= [S] or [v]\n" +
"= [Mouse Left] or [Spacebar] or [Enter]\n" +
"= [Mouse Right] or [Tab] or [H]\n" +
"= [Shift]\n" , 680, 240, 25, Color.WHITE);
Raylib.DrawText("Push the [R] key to begin your journey.", 455, 650, 25, Color.WHITE);
Raylib.EndDrawing();
}
}