SDL-Library/Calculator.cpp
2025-04-15 11:58:23 -07:00

13 lines
232 B
C++

#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();
}