- #ifndef PERCEPTION_H
- #define PERCEPTION_H
-
- class Perception
- { // The class
- public: // Access specifier
- int fWidth; // Attribute (int variable)
- int fHeight; // Attribute
- std::vector<bool> fMovements;
-
- Perception();
- Perception(int iWidth, int iHeight);
- };
-
- #endif // PERCEPTION_H
|