initial commit

This commit is contained in:
2026-01-01 19:21:46 -06:00
commit 3fd85a4a30
9 changed files with 2226 additions and 0 deletions

26
src/Chocolate.cpp Normal file
View File

@@ -0,0 +1,26 @@
#include <Magnum/GL/DefaultFramebuffer.h>
#include <Magnum/Platform/Sdl2Application.h>
using namespace Magnum;
class Chocolate: public Platform::Application {
public:
explicit Chocolate(const Arguments& arguments);
private:
void drawEvent() override;
};
Chocolate::Chocolate(const Arguments& arguments): Platform::Application{arguments} {
/* TODO: Add your initialization code here */
}
void Chocolate::drawEvent() {
GL::defaultFramebuffer.clear(GL::FramebufferClear::Color);
/* TODO: Add your drawing code here */
swapBuffers();
}
MAGNUM_APPLICATION_MAIN(Chocolate)