Advertisement
diddlside

Untitled

Jul 16th, 2011
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.28 KB | None | 0 0
  1. class App < Shoes
  2.  {
  3.     def initialize *args
  4.         super *args
  5.         @icon = image "#{DIR}/static/shoes-icon.png"
  6.         createControls
  7.     end
  8.    
  9.     def createControls
  10.         flow do
  11.             @p = edit_line
  12.         end
  13.         @e = flow
  14.     end
  15.    
  16.     def test_click
  17.    
  18.     end
  19. }
  20.  
  21. app = App.new :width => 400, :height => 260
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement