Files
ss/src/nw4r/lyt/lyt_bounding.cpp
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

23 lines
507 B
C++

#include "nw4r/lyt/lyt_bounding.h"
namespace nw4r {
namespace lyt {
NW4R_UT_RTTI_DEF_DERIVED(Bounding, Pane);
// __ct__Q34nw4r3lyt8BoundingFPCQ44nw4r3lyt3res8BoundingRCQ34nw4r3lyt11ResBlockSet
Bounding::Bounding(const res::Bounding *pBlock, const ResBlockSet &) : Pane(pBlock) {}
// __dt__Q34nw4r3lyt8BoundingFv
Bounding::~Bounding() {}
// DrawSelf__Q34nw4r3lyt8BoundingFRCQ34nw4r3lyt8DrawInfo
void Bounding::DrawSelf(const DrawInfo &drawInfo) {
return;
}
} // namespace lyt
} // namespace nw4r