Advertisement
Guest User

Untitled

a guest
Apr 1st, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Eiffel 0.51 KB | None | 0 0
  1. note
  2.     description: "Summary description for {BOMB}."
  3.     author: ""
  4.     date: "$Date$"
  5.     revision: "$Revision$"
  6.  
  7. class interface
  8.     BOMB
  9.  
  10. create
  11.     make
  12.  
  13. feature
  14.  
  15.     bombs: INTEGER_32
  16.  
  17.     coord_symbol1: STRING_8
  18.  
  19.     coord_symbol2: STRING_8
  20.  
  21.     coordinate1: TUPLE [row: INTEGER_64; column: INTEGER_64]
  22.  
  23.     coordinate2: TUPLE [row: INTEGER_64; column: INTEGER_64]
  24.  
  25.     max_bombs: INTEGER_32
  26.    
  27. feature -- commands
  28.  
  29.     execute (model: ETF_MODEL)
  30.  
  31.     redo (model: ETF_MODEL)
  32.  
  33.     undo (model: ETF_MODEL)
  34.    
  35. end -- class BOMB
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement