diff engine/core/view/renderers/floatingtextrenderer.i @ 631:f3457443c95f

* Added drawRectangle() and fillRectangle() functions to the renderers * Modified FIFE::FloatingTextRenderer to use the new functions * Updated some data types in FIFE::FloatingTextRenderer to use integer types defined in fife_stdint.h
author prock@33b003aa-7bff-0310-803a-e67f0ece8222
date Tue, 05 Oct 2010 15:44:16 +0000
parents d1df6cf5ff23
children
line wrap: on
line diff
--- a/engine/core/view/renderers/floatingtextrenderer.i	Mon Oct 04 21:29:12 2010 +0000
+++ b/engine/core/view/renderers/floatingtextrenderer.i	Tue Oct 05 15:44:16 2010 +0000
@@ -32,9 +32,9 @@
 	public:
 		virtual ~FloatingTextRenderer();
 		void changeDefaultFont(AbstractFont* font);
-		void setColor(Uint8 r, Uint8 g, Uint8 b, Uint8 a = 255);
-		void setBackground(Uint8 br, Uint8 bg, Uint8 bb, Uint8 ba = 255);
-		void setBorder(Uint8 bbr, Uint8 bbg, Uint8 bbb, Uint8 bba = 255);
+		void setColor(uint8_t r, uint8_t g, uint8_t b, uint8_t a = 255);
+		void setBackground(uint8_t br, uint8_t bg, uint8_t bb, uint8_t ba = 255);
+		void setBorder(uint8_t bbr, uint8_t bbg, uint8_t bbb, uint8_t bba = 255);
 		void resetBackground();
 		void resetBorder();