#pragma once #include #ifndef ACTORS_H #define ACTORS_H class Actors { private: public: // Constructor Actors(); // Destructor ~Actors(); }; #endif