Implemented basic containers and ref pointers
This commit is contained in:
@@ -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()
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user