Skip to content

Instantly share code, notes, and snippets.

@Andrej123456789
Last active December 28, 2021 15:22
Show Gist options
  • Save Andrej123456789/77ac13165b9f9fe1e23e71ae0b98743e to your computer and use it in GitHub Desktop.
Save Andrej123456789/77ac13165b9f9fe1e23e71ae0b98743e to your computer and use it in GitHub Desktop.
#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