diff options
| author | Aetias <144526980+AetiasHax@users.noreply.github.com> | 2024-04-30 16:22:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-30 16:22:07 +0200 |
| commit | 5c08baf1c24e50891ea12e8dcd0038c935875631 (patch) | |
| tree | 05fdd2d6a55c908ddcf8cf428b34a68d2b8fe17b /libs/cpp | |
| parent | 0d17d1087f3df2fdd72eac89370eadcefb336f50 (diff) | |
| parent | 9978b675bec7b6e9806fa32b54934f51faa0ca0d (diff) | |
Merge pull request #37 from AetiasHax/map-manager
Delink `MapManager`, `Course` and `MapBase`
Diffstat (limited to 'libs/cpp')
| -rw-r--r-- | libs/cpp/include/vector | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/cpp/include/vector b/libs/cpp/include/vector new file mode 100644 index 00000000..e775aba0 --- /dev/null +++ b/libs/cpp/include/vector @@ -0,0 +1,11 @@ +#pragma once + +namespace std { + template<class T> + class vector { + public: + T *elements; + int size; + int capacity; + }; +} |
