Inicio de la clase enemy

This commit is contained in:
2022-07-03 18:31:52 +02:00
parent 0bb7b6441a
commit 4be611e0e4
4 changed files with 35 additions and 3 deletions

21
source/enemy.h Normal file
View File

@@ -0,0 +1,21 @@
#pragma once
#include "ifdefs.h"
#include <string>
#ifndef ENEMY_H
#define ENEMY_H
// Clase Enemy
class Enemy
{
private:
public:
// Constructor
Enemy();
// Destructor
~Enemy();
};
#endif