#pragma once #include #include "actor.h" #include #ifndef ACTOR_DIAMOND_H #define ACTOR_DIAMOND_H // Clase Actor class ActorDiamond : public Actor { private: public: // Constructor ActorDiamond(actor_t actor); // Destructor ~ActorDiamond(); }; #endif