Last active
December 28, 2021 15:22
-
-
Save Andrej123456789/77ac13165b9f9fe1e23e71ae0b98743e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include "../BasicRenderer.h" | |
#include <stdint.h> | |
class Basic | |
{ | |
public: | |
void Rectangle(size_t x, size_t y, size_t width, size_t height, uint32_t colour); | |
void Square(size_t x, size_t y, size_t width, size_t height, uint32_t colour); | |
}; | |
class StartMenu | |
{ | |
public: | |
int status; | |
void DrawStartMenu(int rows, uint32_t color); | |
}; | |
extern Basic* BasicStuff; | |
extern StartMenu* StartMenuStuff; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment