X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fglobal.h;h=c0f019aa839ab9cba999ad0b72e3911785af9a80;hb=6a7baa2814a8b4d0b93df776a4c99689bcfb3ffa;hp=d66f93badd104b65bdc02cba8a1967e479665769;hpb=ea7712f342020baf61cf33ba98b12140da6aecf7;p=architektonas diff --git a/src/global.h b/src/global.h index d66f93b..c0f019a 100644 --- a/src/global.h +++ b/src/global.h @@ -5,6 +5,7 @@ // to do any instantiation shite. #include +#include #include #include "vector.h" @@ -43,8 +44,15 @@ class Global static float scale; + static Point intersectPoint[16]; // Overkill, yes + static double intersectParam[16]; // Ditto + static int numIntersectPoints; + static int numIntersectParams; + static int activeLayer; - static bool layerIsLocked; + static int numLayers; + static std::vector layerHidden; + static std::vector layerLocked; }; #endif // __GLOBALS_H__