mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-27 12:03:31 +00:00
27 lines
498 B
C++
Executable File
27 lines
498 B
C++
Executable File
#pragma once
|
|
#ifndef MAP_H
|
|
#define MAP_H
|
|
|
|
#include <vector.h>
|
|
|
|
namespace battleship{
|
|
class Map {
|
|
public:
|
|
Map();
|
|
~Map();
|
|
void update();
|
|
void load();
|
|
void unload();
|
|
inline vb01::Vector2 getSize(){return size;}
|
|
private:
|
|
vb01::Vector2 size;
|
|
/*
|
|
irr::scene::ILightSceneNode *sunLight;
|
|
irr::scene::IAnimatedMesh *waterMesh;
|
|
irr::scene::ISceneNode *waterNode;
|
|
*/
|
|
};
|
|
}
|
|
|
|
#endif
|