1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-08-21 14:00:52 +00:00

Migrate from TinyXML v1 to v2. Not bundled (yet).

This commit is contained in:
James Le Cuirot 2014-06-08 21:11:23 +01:00
parent 18034bcc18
commit 43d41feeb8
27 changed files with 583 additions and 11237 deletions

View file

@ -25,7 +25,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
struct CutsceneMarker
{
float t;
TiXmlElement *e;
XMLElement *e;
};
class Cutscene
@ -40,7 +40,7 @@ public:
void update(float dt);
TiXmlDocument file;
XMLDocument file;
std::vector <CutsceneMarker> markers;