First commit

This commit is contained in:
Aik-Siong Koh
2023-04-26 17:23:31 -06:00
commit 475b8d16bc
40 changed files with 721 additions and 0 deletions

14
MbDCode/Array.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include <vector>
namespace MbD {
template <typename T>
class Array : public std::vector<T>
{
public:
Array(){}
Array(int i) : std::vector<T>(i) {}
Array(std::initializer_list<T> list) : std::vector<T>{ list } {}
};
}