Sha256: b5348e92505fd86ad0538d83d85a36d0596ade5b8590a870b7841d4a0ef31a61
Contents?: true
Size: 348 Bytes
Versions: 11
Compression:
Stored size: 348 Bytes
Contents
# -*- coding: utf-8 -*- module DXRubySDL module Color module_function def to_sdl_color(color) if color.length == 4 return color[0..2] else return color end end def to_sdl_alpha(color) if color.length == 4 return color[3] else return nil end end end end
Version data entries
11 entries across 11 versions & 1 rubygems