| 1234567891011121314151617181920 |
- #ifndef BEHAVIORTREE_CONTEXIF_H
- #define BEHAVIORTREE_CONTEXIF_H
- #include <stddef.h>
- #include "BehaviorTree/SpellBuff.h"
- namespace Egametang {
- class ContexIf
- {
- public:
- virtual ~ContexIf()
- {
- }
- };
- } // namespace Egametang
- #endif // BEHAVIORTREE_CONTEXIF_H
|