| 827 | |
| 828 | #pragma region CheckBox |
| 829 | CheckBox::CheckBox(olc::QuickGUI::Manager& manager, const std::string& text, const bool check, const olc::vf2d& pos, const olc::vf2d& size) |
| 830 | : Button(manager, text, pos, size) |
| 831 | { |
| 832 | bChecked = check; |
| 833 | } |
| 834 | |
| 835 | void CheckBox::Update(olc::PixelGameEngine* pge) |
| 836 | { |
nothing calls this directly
no outgoing calls
no test coverage detected