Files
ImprovGFX/OpenWindow/GeometryLibrary.cpp
Youssef Assem bab419d197 start
2019-12-18 23:09:56 +02:00

10 lines
195 B
C++

#include "GeometryLibrary.h"
GeometryLibrary::GeometryLibrary(tinyxml2::XMLElement* xml)
{
auto xm = xml;
auto g = Geometry(xml->FirstChildElement("geometry"));
m_Geometries.push_back(g);
}