Initial commit

Flemme
This commit is contained in:
2025-01-08 19:55:38 -05:00
parent e45890ef24
commit abec0f6ef2
128 changed files with 92284 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include <vector>
namespace Juliet
{
// TODO : Create my own Vector class based on https://github.com/niklas-ourmachinery/bitsquid-foundation/blob/master/collection_types.h
template <typename T> class Vector : public std::vector<T>
{
};
} // namespace Juliet