In my game, there is are ActionFactory (makes AbstractActions), AbstractAction (actions that could exist), PotentialAction (actions that a being could do, which are assosietted with a specific being) classes. I need a name for a class that reperessents an actual, choosen action which was done by a specific being, has specific targets, and possibly arguments.
In my game, there is are ActionFactory (makes AbstractActions), AbstractAction (actions that could exist),
Share
I went with RealAction, mainly because of API consistency – all actual, specific real-world classes are prefixed with Real (and have an associated Potential class)