Advertisement
jsbsan

soldado

Nov 2nd, 2013
1,701
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GAMBAS 0.23 KB | None | 0 0
  1. ' Gambas class file
  2.  
  3. Inherits Unidad
  4.  
  5. Public Sub Soldado(nombre As String)
  6.  
  7.   Super.setnombre(nombre)
  8.  
  9. End
  10.  
  11. Public Function Descripcion() As String
  12.  
  13.   Return "Soldado:" & Super.DevuelveNombre() & "<br>"
  14.  
  15. End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement