diff options
| author | Aetias <aetias@outlook.com> | 2024-04-30 17:33:16 +0200 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2024-04-30 17:33:16 +0200 |
| commit | d22083ba0a5c4844cb7cf1069532f11d1a5c7531 (patch) | |
| tree | 94090ee75c1637ee49847968a1c5e7569f00e70e /libs/cpp/include/vector | |
| parent | d994c9ee4b153c72757bed21e480e849448aeb5f (diff) | |
| parent | 5c08baf1c24e50891ea12e8dcd0038c935875631 (diff) | |
Merge branch 'main' into item-manager
Diffstat (limited to 'libs/cpp/include/vector')
| -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; + }; +} |
