Forgot to place message on previous. Added the entire System library to the repo.

Here I've modified Clock.cpp and added another alias for Clock_GetElapsedTime so that it conforms with the Ruby standard.

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1590 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
groogy 2010-11-02 16:15:14 +00:00
parent 4b418bb4d7
commit 77626aa172

View File

@ -45,4 +45,5 @@ void Init_Clock( void )
// Aliases
rb_define_alias( globalClockClass, "elapsedTime", "getElapsedTime" );
rb_define_alias( globalClockClass, "elapsed_time", "getElapsedTime" );
}