#include "Library.hpp" int main() { SDL_Init(SDL_INIT_VIDEO); Application app; Button thing {30, 30, 30, 30}; Button thing2 {120, 120, 30, 30}; app.AddButton(thing); app.AddButton(thing2); app.Update(); }