#include "pixelGameEngine.h"
#include "Element.h"
struct List{
std::vector<Element>elements;
List*parent;
int index=0;
friend std::ostream&operator<<(std::ostream&out,List&rhs);
};