Sketching some basic interfaces

This commit is contained in:
2022-11-01 20:02:47 +01:00
parent c119a02e2f
commit ee5e80512b
13 changed files with 295 additions and 9 deletions

11
inc/Bitmap.hpp Normal file
View File

@@ -0,0 +1,11 @@
#include <vector>
#pragma once
namespace ptprnt::bitmap {
struct Bitmap {
std::vector<std::vector<int>> map;
};
}