ss/include/nw4r/lyt/lyt_bounding.h
elijah-thomas774 b9b7f68da7 lyt_bounding OK
2024-05-31 20:28:32 -04:00

22 lines
476 B
C++

#ifndef NW4R_LYT_BOUNDING_H
#define NW4R_LYT_BOUNDING_H
#include "common.h"
#include "nw4r/lyt/lyt_drawInfo.h"
#include "nw4r/lyt/lyt_material.h"
#include "nw4r/lyt/lyt_pane.h"
namespace nw4r {
namespace lyt {
class Bounding : public Pane {
public:
Bounding(const res::Bounding *pBlock, const ResBlockSet &);
virtual ~Bounding();
NW4R_UT_RTTI_DECL(Bounding);
virtual void DrawSelf(const DrawInfo &drawInfo);
};
} // namespace lyt
} // namespace nw4r
#endif