| 1 | // |
| 2 | // Action.hpp |
| 3 | // msa |
| 4 | // |
| 5 | // Created by James McIlree on 4/15/13. |
| 6 | // Copyright (c) 2014 Apple. All rights reserved. |
| 7 | // |
| 8 | |
| 9 | #ifndef msa_Action_hpp |
| 10 | #define msa_Action_hpp |
| 11 | |
| 12 | class Action { |
| 13 | public: |
| 14 | virtual void execute(Globals& globals) = 0; |
| 15 | }; |
| 16 | |
| 17 | #endif |