couch/core/Spatial.h

14 lines
222 B
C
Raw Normal View History

2021-01-14 11:52:01 -06:00
#ifndef SPATIAL_H
#define SPATIAL_H
#include "Node.h"
#include "Transform.h"
class Spatial : public Node {
2021-01-14 11:52:01 -06:00
public:
Transform transform;
virtual bool IsTransformable() const { return true;}
};
#endif /* SPATIAL_H */