Finally finished making all the functions that I will eventually bind to the SFML::Image class. To tired right now, I'll continue tomorrow.

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1682 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
groogy 2010-11-20 00:44:23 +00:00
parent a80339f668
commit a4925aab38
4 changed files with 294 additions and 9 deletions

View file

@ -27,6 +27,17 @@
VALUE Rect_ForceType( VALUE someValue );
VALUE Color_GetLeft( VALUE self );
VALUE Color_GetTop( VALUE self );
VALUE Color_GetWidth( VALUE self );
VALUE Color_GetHeight( VALUE self );
VALUE Color_SetLeft( VALUE self, VALUE aVal );
VALUE Color_SetTop( VALUE self, VALUE aVal );
VALUE Color_SetWidth( VALUE self, VALUE aVal );
VALUE Color_SetHeight( VALUE self, VALUE aVal );
void Init_Rect( void );
#endif // SFML_RUBYEXT_RECT_HEADER_