CombatContex.h 354 B

12345678910111213141516171819202122232425
  1. #ifndef EVENT_COMBATCONTEX_H
  2. #define EVENT_COMBATCONTEX_H
  3. #include "Event/ContexIf.h"
  4. namespace Egametang {
  5. class CombatContex: public ContexIf
  6. {
  7. private:
  8. Spell* spell;
  9. Buff* buff;
  10. public:
  11. CombatContex(Spell* spell, Buff* buff);
  12. virtual Spell* GetSpell();
  13. virtual Buff* GetBuff();
  14. };
  15. } // namespace Egametang
  16. #endif // EVENT_COMBATCONTEX_H