CombatContex.cc 269 B

1234567891011121314151617181920
  1. #include "Event/CombatContex.h"
  2. namespace Egametang {
  3. CombatContex::CombatContex(Spell* spell, Buff* buff):
  4. spell(spell), buff(buff)
  5. {
  6. }
  7. Spell* CombatContex::GetSpell()
  8. {
  9. return spell;
  10. }
  11. Buff* CombatContex::GetBuff()
  12. {
  13. return buff;
  14. }
  15. } // namespace Egametang