añadido map.h y map.cpp

This commit is contained in:
2022-07-01 20:21:28 +02:00
parent 37325a2ec3
commit 661b920dfa
7 changed files with 70 additions and 32 deletions
+22
View File
@@ -0,0 +1,22 @@
#pragma once
#include "ifdefs.h"
#include <string>
#include <vector>
#ifndef MAP_H
#define MAP_H
// Clase Map
class Map
{
private:
public:
// Constructor
Map();
// Destructor
~Map();
};
#endif