Module: RbSDL2::Version
- Defined in:
- lib/rb_sdl2/version.rb
Class Method Summary collapse
-
.revision ⇒ Object
SDL ライブラリのリビジョンを文字列で返します。.
-
.version ⇒ Object
SDL ライブラリのバージョン番号を文字列で返します。形式はセマンティックバージョニングです。.
Class Method Details
.revision ⇒ Object
SDL ライブラリのリビジョンを文字列で返します。
5 |
# File 'lib/rb_sdl2/version.rb', line 5 def revision = ::SDL.GetRevision.read_string |
.version ⇒ Object
SDL ライブラリのバージョン番号を文字列で返します。形式はセマンティックバージョニングです。
8 9 10 11 12 |
# File 'lib/rb_sdl2/version.rb', line 8 def version st = ::SDL::Version.new ::SDL.GetVersion(st) "#{st[:major]}.#{st[:minor]}.#{st[:patch]}" end |