Implement Pointless Broken Things
[ipdf/code.git] / src / ipdf.h
index d6dc955..7150944 100644 (file)
@@ -35,6 +35,13 @@ namespace IPDF
                }
        };
 
+       struct Colour
+       {
+               float r; float g; float b; float a;
+               Colour() = default;
+               Colour(float _r, float _g, float _b, float _a) : r(_r), g(_g), b(_b), a(_a) {}
+       };
+
        struct Objects
        {
                std::vector<ObjectType> types;          

UCC git Repository :: git.ucc.asn.au