/* * © Copyright 2014 – Urheberrechtshinweis * Alle Rechte vorbehalten / All Rights Reserved * * Programmcode ist urheberrechtlich geschuetzt. * Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner. * Keine Verwendung ohne explizite Genehmigung. * (vgl. § 106 ff UrhG / § 97 UrhG) */ #ifndef MYNODE_H #define MYNODE_H #include #include struct MyNode : public GridNode, public GridPoint, public GridNodeImportance { MyNode(float x, float y, float z) : GridPoint(x,y,z) {;} float walkImportance; }; #endif // MYNODE_H