Go to the documentation of this file.00001 #ifndef __NYTRO_AiSense_H
00002 #define __NYTRO_AiSense_H
00003
00004
00005
00006
00007
00008
00009
00010
00011 #include "system/nyCommon.h"
00012
00013 namespace Nytro
00014 {
00015 namespace Ai
00016 {
00018 class NYTRO_API AiSense : public Base
00019 {
00020 public:
00021
00022 enum EAiSenseType
00023 {
00024 eAiSenseType_Sight,
00025 eAiSenseType_Hear,
00026 eAiSenseType_Smell
00027 };
00028
00029 AiSense();
00030 virtual ~AiSense();
00031
00032 protected:
00033 private:
00034 };
00035 };
00036 };
00037
00038 #endif