Package icaro-bloques :: Module main :: Class SALIR
[hide private]
[frames] | no frames]

Class SALIR

source code

          object --+    
                   |    
pygame.sprite.Sprite --+
                       |
                      SALIR

Class doc

Instance Methods [hide private]
 
__init__(self, pantalla, x, y, img, texto)
Class initialiser
source code
 
update(self)
method to control sprite behavior Sprite.update(*args):
source code

Inherited from pygame.sprite.Sprite: __repr__, add, add_internal, alive, groups, kill, remove, remove_internal

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, pantalla, x, y, img, texto)
(Constructor)

source code 

Class initialiser

Overrides: object.__init__

update(self)

source code 

method to control sprite behavior Sprite.update(*args):

The default implementation of this method does nothing; it's just a convenient "hook" that you can override. This method is called by Group.update() with whatever arguments you give it.

There is no need to use this method if not using the convenience method by the same name in the Group class.

Overrides: pygame.sprite.Sprite.update
(inherited documentation)