ContexIf.h 262 B

1234567891011121314151617181920
  1. #ifndef BEHAVIORTREE_CONTEXIF_H
  2. #define BEHAVIORTREE_CONTEXIF_H
  3. #include <stddef.h>
  4. #include "BehaviorTree/SpellBuff.h"
  5. namespace Egametang {
  6. class ContexIf
  7. {
  8. public:
  9. virtual ~ContexIf()
  10. {
  11. }
  12. };
  13. } // namespace Egametang
  14. #endif // BEHAVIORTREE_CONTEXIF_H