X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Floader%2FParsedSource.h;fp=src%2Floader%2FParsedSource.h;h=f78a49e7b66d402b11b46924ed2595d2c12ee366;hb=4b3deb01b66307f5025938538d27e6ad86cfea13;hp=ebcc853ced570f7728b202f995cc993b8af53792;hpb=24ca4a4d63d0a706c6c7676192588dd21893ca32;p=l2e.git diff --git a/src/loader/ParsedSource.h b/src/loader/ParsedSource.h index ebcc853..f78a49e 100644 --- a/src/loader/ParsedSource.h +++ b/src/loader/ParsedSource.h @@ -22,7 +22,8 @@ class Value; class Literal { enum Type { - ARRAY, + ARRAY_VALUES, + ARRAY_PROPS, BOOLEAN, COLOR, NUMBER, @@ -33,6 +34,7 @@ class Literal { public: explicit Literal(const std::vector &); + explicit Literal(const std::vector &); explicit Literal(bool); Literal(int r, int g, int b, int a = 255); Literal(const std::string &); @@ -43,6 +45,7 @@ private: PropertyList *props; std::string str; std::vector values; + std::vector propertyLists; int i1, i2, i3, i4; bool b; Type type;