NotNode.h 295 B

123456789101112131415161718192021
  1. #ifndef EVENT_NOTNODE_H
  2. #define EVENT_NOTNODE_H
  3. #include "Event/LogicNodeIf.h"
  4. namespace Egametang {
  5. class NotNode: public LogicNodeIf
  6. {
  7. private:
  8. LogicNodeIf* node;
  9. public:
  10. virtual ~NotNode();
  11. virtual bool Check(ContexIf* contex);
  12. };
  13. } // namespace Egametang
  14. #endif // EVENT_NOTNODE_H