aboutsummaryrefslogtreecommitdiff
path: root/headers/allElements.h
blob: 9db718884ccb2f4ce6aa0bfdb1fb8d5551f13e5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// get all elements from elements folder

#pragma once
#ifndef ALL_ELEMENTS
#define ALL_ELEMENTS

#include<vector>
#include "baseElement.h"

std::vector<baseElement*> getAllElements();

#endif