Project setup, and high-level class

This commit is contained in:
Leonetienne
2022-03-05 16:15:00 +01:00
parent db1e74f1d7
commit 0cd22f3bd2
6 changed files with 97 additions and 0 deletions

9
Exec/main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <BMP.h>
using namespace Leonetienne::BmpPP;
int main() {
BMP bmp({800, 600});
return 0;
}