removed many Irrlicht references

This commit is contained in:
devZoGok
2021-10-31 15:13:47 +02:00
parent 0e236a44d6
commit b18b2fe9a8
70 changed files with 1822 additions and 1529 deletions
+5 -4
View File
@@ -1,16 +1,17 @@
#include "exitButton.h"
#include <root.h>
using namespace irr::core;
using namespace game::core;
using namespace std;
using namespace vb01;
namespace game
{
namespace gui{
ExitButton::ExitButton(vector2d<s32> pos, vector2d<s32> size, stringw name, bool separate) : Button(pos, size, name, separate) {
ExitButton::ExitButton(Vector2 pos, Vector2 size, string name, bool separate) : Button(pos, size, name, separate) {
}
void ExitButton::onClick() {
GameManager::getSingleton()->getDevice()->closeDevice();
//Root::getSingleton()->set
}
}
}