LogicNodeIf.h 312 B

123456789101112131415161718192021222324252627282930
  1. #ifndef EVENT_LOGICNODEIF_H
  2. #define EVENT_LOGICNODEIF_H
  3. namespace Egametang {
  4. class Spell
  5. {
  6. };
  7. class Buff
  8. {
  9. public:
  10. int type;
  11. };
  12. class ContexIf
  13. {
  14. };
  15. class LogicNodeIf
  16. {
  17. public:
  18. virtual ~LogicNodeIf();
  19. virtual bool Check(ContexIf* contex) = 0;
  20. };
  21. } // namespace Egametang
  22. #endif // EVENT_LOGICNODEIF_H