Ya coge los diamantes, aunque no los recuerda
This commit is contained in:
25
source/actor_diamond.h
Normal file
25
source/actor_diamond.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#pragma once
|
||||
|
||||
#include <SDL2/SDL.h>
|
||||
#include "actor.h"
|
||||
#include <string>
|
||||
|
||||
#ifndef ACTOR_DIAMOND_H
|
||||
#define ACTOR_DIAMOND_H
|
||||
|
||||
// Clase Actor
|
||||
class ActorDiamond : public Actor
|
||||
{
|
||||
private:
|
||||
|
||||
public:
|
||||
// Constructor
|
||||
ActorDiamond(actor_t actor);
|
||||
|
||||
// Destructor
|
||||
~ActorDiamond();
|
||||
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user