añadido map.h y map.cpp
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user