SDLU/include/SDLU.hpp

14 lines
320 B
C++
Raw Normal View History

2021-04-23 13:08:51 +00:00
#pragma once
#include <graphics/Graphics.hpp>
#include <structures/Mouse.hpp>
2021-04-23 14:29:26 +00:00
#include <structures/Cursor.hpp>
2021-04-24 12:35:49 +00:00
#include <structures/Time.hpp>
2021-04-23 23:21:15 +00:00
#include <structures/Clock.hpp>
2021-04-23 13:08:51 +00:00
namespace sdlu {
// TODO: Eventually we should initialize things once the object gets created
extern int Initialize();
extern void Quit();
2021-04-24 12:35:49 +00:00
}