diff --git a/game/scene.py b/game/scene.py index a52354c..67d9fa4 100644 --- a/game/scene.py +++ b/game/scene.py @@ -24,14 +24,7 @@ class Node: subnode.draw(time) class SceneNode(Node): - __slots__ = '_subnodes' - - def __init__(self, *subnodes): - Node.__init__(self, *subnodes) - self._subnodes = subnodes - - def draw(self, time): - Node.draw(self, time) + pass class TextureNode(Node): __slots__ = '_textures'