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