16 lines
224 B
C++
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 |