If you define: ``` class DoSomething(GenericActor): MODE_ACTION_1 = 0 MODE_ACTION_2 = 1 ``` And then try to use one of these attributes, an error will be raised: ``` AttributeError: 'Actor' object has no attribute 'ACTION_1' ```
If you define:
And then try to use one of these attributes, an error will be raised: