summaryrefslogtreecommitdiffhomepage
path: root/TitleScreen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TitleScreen.cpp')
-rw-r--r--TitleScreen.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/TitleScreen.cpp b/TitleScreen.cpp
new file mode 100644
index 0000000..3faf48f
--- /dev/null
+++ b/TitleScreen.cpp
@@ -0,0 +1,16 @@
+#include "TitleScreen.h"
+
+#include <raylib.h>
+
+
+void
+TitleScreen::update(const float dt)
+{
+}
+
+
+void
+TitleScreen::draw()
+{
+ DrawText("Bullet HELL 2022", 190, 200, 20, LIGHTGRAY);
+}