Avionics
Dropship Simulator
Element.h
Go to the documentation of this file.
1
#include "
Component.h
"
2
3
class
Element
4
{
5
public
:
6
int
x
,
y
;
7
std::vector<Component>
components
;
8
9
void
Render
()
10
{
11
for
(UINT h = 0; h <
components
.size(); h++)
12
{
13
components
.at(h).Render();
14
}
15
}
16
};
Element
Definition:
Element.h:3
Element::x
int x
Definition:
Element.h:6
Element::y
int y
Definition:
Element.h:6
Element::Render
void Render()
Definition:
Element.h:9
Element::components
std::vector< Component > components
Definition:
Element.h:7
Component.h
Rendering
Element.h
Generated on Sat Feb 13 2021 09:30:43 for Avionics by
1.8.14