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

13
Src/Colormodes.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef BMPPP_COLORMODES_H
#define BMPPP_COLORMODES_H
namespace Leonetienne {
namespace BmpPP {
enum class Colormode {
RGB,
RGBA
};
}
}
#endif //BMPPP_COLORMODES_H