Advertisement
jsbsan

propiedad clase tablero

Oct 4th, 2013
3,014
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GAMBAS 0.24 KB | None | 0 0
  1. ' Gambas class file
  2. Property casillas As Integer[]
  3. Private hcasillas As New Integer[7, 7]
  4.  
  5. Private Function casillas_Read() As INTEGER[]
  6.   Return hcasillas  
  7. End
  8.  
  9. Private Sub casillas_Write(Value As INTEGER[])
  10.  hcasillas = value
  11. End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement