Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
defs.py
Go to the documentation of this file.
1 # Standard definitions for Vegastrike python scripts
2 
3 # Callable wrapper for class methods
4 class Callable:
5  def __init__(self,anycallable):
6  self.__call__ = anycallable
7 
8