Implemented basic containers and ref pointers

This commit is contained in:
HOEGLER Stefan
2020-02-25 00:45:20 +01:00
parent 4c491a9378
commit a14237d6ce
31 changed files with 1212 additions and 36 deletions
+12 -3
View File
@@ -1,11 +1,20 @@
#include "Graphics.h"
#include <iostream>
#include <map>
Graphics::Graphics()
Seele::Graphics::Graphics()
{
Array<uint8> arr;
arr.add('2');
arr.add('4');
std::cout << "Test" << std::endl;
for (auto a : arr)
{
std::cout << "Element: " << a << std::endl;
}
}
Graphics::~Graphics()
Seele::Graphics::~Graphics()
{
}