Browse Source

Add float return value to GuiBaseWidget::getScale

master
Krisjanis Rijnieks 9 years ago
parent
commit
0b698e7f63
  1. 2
      src/Application/GuiBaseWidget.h

2
src/Application/GuiBaseWidget.h

@ -21,7 +21,7 @@ class GuiBaseWidget {
virtual bool inside(float x, float y) = 0; virtual bool inside(float x, float y) = 0;
virtual float getScale(){} virtual float getScale(){ return 0.0f; }
ofEvent <GuiWidgetEvent> guiWidgetEvent; ofEvent <GuiWidgetEvent> guiWidgetEvent;
}; };

Loading…
Cancel
Save