]> git.localhorst.tv Git - l2e.git/blobdiff - src/loader/ParsedSource.h
added hard support for path names in source files
[l2e.git] / src / loader / ParsedSource.h
index 36f3810ab434cb8805bb188b95348f6984165a91..8401777f54e0f43ebac98a6ed2e3286a268ec87f 100644 (file)
@@ -28,6 +28,7 @@ public:
                BOOLEAN,
                COLOR,
                NUMBER,
+               PATH,
                STRING,
                VECTOR,
                OBJECT
@@ -39,6 +40,7 @@ public:
        explicit Literal(bool);
        Literal(int r, int g, int b, int a = 255);
        explicit Literal(int number);
+       Literal(const std::string &dir, const std::string &path);
        Literal(const std::string &);
        Literal(int x, int y);
        Literal(const std::string &typeName, PropertyList *properties);