summaryrefslogtreecommitdiffhomepage
path: root/TitleScreen.cpp
blob: 3faf48ffabdba2b39e591769e7e534e8923ff16e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "TitleScreen.h"

#include <raylib.h>


void
TitleScreen::update(const float dt)
{
}


void
TitleScreen::draw()
{
    DrawText("Bullet HELL 2022", 190, 200, 20, LIGHTGRAY);
}