mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 10:05:13 +00:00
16 lines
274 B
C++
16 lines
274 B
C++
#ifndef SCREEPS_STRUCTURE_WALL_HPP
|
|
#define SCREEPS_STRUCTURE_WALL_HPP
|
|
|
|
#include "Structure.hpp"
|
|
|
|
namespace Screeps {
|
|
|
|
class StructureWall : public Structure
|
|
{
|
|
public:
|
|
explicit StructureWall(JS::Value value);
|
|
};
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_STRUCTURE_WALL_HPP
|