summaryrefslogtreecommitdiffhomepage
path: root/TitleScreen.cpp
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-17 01:07:35 +0200
committerAki <please@ignore.pl>2022-04-17 01:34:10 +0200
commit28ed6105138e43b50ed2ef88ed08d09d48d9d660 (patch)
tree9121155c7dbbe3020fa625c4e25dc48299038b2a /TitleScreen.cpp
parenteb90e2e2d220b770f6b59dfad4315b477901a24d (diff)
downloadbullethell2022-28ed6105138e43b50ed2ef88ed08d09d48d9d660.zip
bullethell2022-28ed6105138e43b50ed2ef88ed08d09d48d9d660.tar.gz
bullethell2022-28ed6105138e43b50ed2ef88ed08d09d48d9d660.tar.bz2
Fleshed out skeleton with Game and Screen classes
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);
+}