untitled/include/main.hpp
2025-07-12 02:12:46 +01:00

16 lines
224 B
C++

#ifndef MAIN_HPP
#define MAIN_HPP
// Includes
#include <iostream>
#include "window.hpp"
#include "graphics.hpp"
#include "utils.hpp"
// Variables
extern bool running;
// Functions
int main(int argc, char* argv[]);
#endif