00001 #ifndef __NYTRO_AiGoal_H 00002 #define __NYTRO_AiGoal_H 00003 00004 //***************************************************************************** 00005 // Nytro GameEngine 00006 // 00007 // © Copyright 7thFACTOR Entertainment 00008 // All rights reserved 00009 //***************************************************************************** 00010 00011 #include "system/nyCommon.h" 00012 00013 namespace Nytro 00014 { 00015 namespace Ai 00016 { 00018 class NYTRO_API AiGoal : public Base 00019 { 00020 public: 00021 00022 AiGoal(); 00023 virtual ~AiGoal(); 00024 00025 protected: 00026 private: 00027 }; 00028 }; 00029 }; 00030 00031 #endif