def __init__(self): """Initializes a GameObject with basic logic as provided by the Creer code generator.""" BaseGameObject.__init__(self) # private attributes to hold the properties so they appear read only self._game_object_name = "" self._id = "" self._logs = []