game-attributes? ( object -- ? )


Vocabulary
game.worlds

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the game-attributes class.

Definition
USING: classes.tuple.private ;

IN: game.worlds

: game-attributes? ( object -- ? )
\ game-attributes 9 tuple-instance? ;