NotNode.cc 207 B

12345678910111213
  1. #include <boost/foreach.hpp>
  2. #include "Base/Marcos.h"
  3. #include "LogicTree/NotNode.h"
  4. namespace Egametang {
  5. bool NotNode::Run(LogicContex* contex)
  6. {
  7. return !node->Run(contex);
  8. }
  9. } // namespace Egametang