mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 01:55:12 +00:00
Completed StructureController, StructureExtension, StructureRampart, StructureRoad, StructureSpawn classes.
22 lines
374 B
C++
22 lines
374 B
C++
#ifndef SCREEPS_STRUCTURE_RAMPART_HPP
|
|
#define SCREEPS_STRUCTURE_RAMPART_HPP
|
|
|
|
#include "Structure.hpp"
|
|
|
|
namespace Screeps {
|
|
|
|
class StructureRampart : public Structure
|
|
{
|
|
public:
|
|
explicit StructureRampart(JS::Value value);
|
|
|
|
bool isPublic() const;
|
|
|
|
int ticksToDecay() const;
|
|
|
|
int setPublic(bool isPublic);
|
|
};
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_STRUCTURE_RAMPART_HPP
|