Sha256: 0a678f4a846142370cfb0c1bef311c1707b5e716ae3237d2c03475035e4871d5
Contents?: true
Size: 564 Bytes
Versions: 51
Compression:
Stored size: 564 Bytes
Contents
class KlondikeSolitaire module View class HiddenPlayingCard include Glimmer::UI::CustomShape options :card_x, :card_y before_body do self.card_x ||= 0 self.card_y ||= 0 end body { rectangle(card_x, card_y, PLAYING_CARD_WIDTH - 1, PLAYING_CARD_HEIGHT - 1, 15, 15) { background :red # border rectangle(0, 0, PLAYING_CARD_WIDTH - 1, PLAYING_CARD_HEIGHT - 1, 15, 15) { foreground :black } } } end end end
Version data entries
51 entries across 51 versions & 1 rubygems