added disclamer to amo parser

This commit is contained in:
maxbyte9p
2024-05-21 16:00:01 -04:00
parent 1a90e00fd6
commit b37eba52aa

View File

@@ -5,6 +5,22 @@
#include <vector> #include <vector>
#include <Collage/types/model.h> #include <Collage/types/model.h>
/*
* This is unfinished and janky as shit. You have been warned.
*
* Currently values are parsed into temporary structs until we
* figure out what to do with them. The animation parsing is
* particularly fucked right now. There's plans to do more
* cleanup later when we throw this all at the game engine.
*
* I hope for us to be able to load the chicken into the
* engine soon.
*
* - Maxine Hayes
*
* p.s perhaps stringers are a good idea for exporting.
*/
struct Frame { struct Frame {
int id; int id;
std::vector<float> n; std::vector<float> n;