El Octavio  1.0
This is a video game about adventures.
Main.cpp
Go to the documentation of this file.
1#include "../Header files/Precompile.h"
2#include "../Header files/El Octavo-Functions.h";
3#include "../Header files/Menu.h";
4#include "../Header files/Additional Functions.h";
5
6int main()
7{
8 RenderWindow window(VideoMode(1280, 720), "The legend of Kurabirov", Style::Titlebar | Style::Close);
9
10 setupMenu(window);
11}
12
int main()
Definition: Main.cpp:6
void setupMenu(RenderWindow &window)
Definition: Menu.cpp:152
Window that can serve as a target for 2D drawing.
VideoMode defines a video mode (width, height, bpp)
Definition: VideoMode.hpp:42
@ Titlebar
Title bar + fixed border.
Definition: WindowStyle.hpp:41
@ Close
Title bar + close button.
Definition: WindowStyle.hpp:43