X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fobject.h;h=69759c80a7fde69b7ffe9ccc2a35abb064a758fa;hb=ab83db6f1e31d44ced585119a57fd10896e469cb;hp=bd66e7ee0896899d3ca6df814828f64b3839f827;hpb=b5dd2b141640b2483cc290d99cdc2a0bf72be1b4;p=libs%2Fgl.git diff --git a/source/object.h b/source/object.h index bd66e7ee..69759c80 100644 --- a/source/object.h +++ b/source/object.h @@ -23,10 +23,6 @@ similar objects. See class ObjectInstance. */ class Object: public Renderable { -private: - std::vector > meshes; - RefPtr technique; - public: class Loader: public DataFile::CollectionObjectLoader { @@ -45,6 +41,11 @@ public: void technique(const std::string &); }; +private: + std::vector > meshes; + RefPtr technique; + +public: Object(); Object(const Mesh *, const Technique *); ~Object();