This commit is contained in:
Spartan322
2024-12-21 04:33:40 -05:00
746 changed files with 15841 additions and 4689 deletions

View File

@@ -139,6 +139,10 @@ public:
inline const T &operator[](int p_index) const {
return _data[p_index];
}
_FORCE_INLINE_ VSet() {}
_FORCE_INLINE_ VSet(std::initializer_list<T> p_init) :
_data(p_init) {}
};
#endif // VSET_H