forked from jaildesigner-jailgames/jaildoctors_dilemma
22 lines
196 B
C++
22 lines
196 B
C++
#pragma once
|
|
#include "ifdefs.h"
|
|
#include <string>
|
|
|
|
#ifndef ENEMY_H
|
|
#define ENEMY_H
|
|
|
|
// Clase Enemy
|
|
class Enemy
|
|
{
|
|
private:
|
|
|
|
public:
|
|
// Constructor
|
|
Enemy();
|
|
|
|
// Destructor
|
|
~Enemy();
|
|
};
|
|
|
|
#endif
|