Simple Nano Circuit 0.0.2
Display.h
1#ifndef _Display_H_
2#define _Display_H_
3
4#include <SDL.h>
5
6#include <imgui.h>
7#include <imgui_impl_sdl2.h>
8#include <imgui_impl_sdlrenderer2.h>
9
10#include "AsgardClass.h"
11
12namespace Display
13{
14 void Menu( bool& , AsgardClass* );
15 void BaseInfoWindow( ImGuiIO& , SDL_Point&, AsgardClass* );
16 void TimeSettingWindow ( ImGuiIO& , SDL_Point&, AsgardClass* );
17}
18
19#endif
Definition: AsgardClass.h:17