configure server host and port in enter game

This commit is contained in:
Eduardo Bart
2011-11-16 18:07:52 -02:00
parent 9159e14895
commit fa8291a433
8 changed files with 67 additions and 23 deletions

View File

@@ -27,6 +27,12 @@
#include <framework/graphics/graphics.h>
#include <framework/core/eventdispatcher.h>
void UICheckBox::setup()
{
UIWidget::setup();
setFocusable(false);
}
void UICheckBox::render()
{
if(m_image) {

View File

@@ -28,6 +28,7 @@
class UICheckBox : public UIWidget
{
public:
void setup();
void render();
bool isChecked();