33 lines
491 B
C++
33 lines
491 B
C++
|
// C
|
||
|
#include <stdio.h>
|
||
|
|
||
|
// System (C)
|
||
|
#include <sys/inotify.h>
|
||
|
#include <fcntl.h>
|
||
|
#include <libgen.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
// Misc (C)
|
||
|
#include <SDL.h>
|
||
|
#include <GL/glew.h>
|
||
|
|
||
|
// C++ std
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
#include <algorithm>
|
||
|
#include <functional>
|
||
|
#include <memory>
|
||
|
#include <fstream>
|
||
|
|
||
|
// ImGui
|
||
|
#include <imgui.h>
|
||
|
|
||
|
// GLM
|
||
|
#include <glm/mat3x3.hpp>
|
||
|
#include <glm/gtx/euler_angles.hpp>
|
||
|
|
||
|
// Silly decoration macros I use everywhere
|
||
|
#define __rd__
|
||
|
#define __wr__
|
||
|
#define __rw__
|