mirror of
https://github.com/kirirururu/screepsxx.git
synced 2026-06-14 17:30:42 +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
|