26 lines
645 B
C
26 lines
645 B
C
/*
|
||
* © 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 <Indoor/grid/Grid.h>
|
||
#include <Indoor/grid/factory/v2/GridNodeImportance.h>
|
||
|
||
struct MyNode : public GridNode, public GridPoint, public GridNodeImportance {
|
||
|
||
MyNode(float x, float y, float z) : GridPoint(x,y,z) {;}
|
||
|
||
float walkImportance;
|
||
|
||
};
|
||
|
||
#endif // MYNODE_H
|