mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 10:05:13 +00:00
Completed StructureController, StructureExtension, StructureRampart, StructureRoad, StructureSpawn classes.
18 lines
302 B
C++
18 lines
302 B
C++
#ifndef SCREEPS_STRUCTURE_ROAD_HPP
|
|
#define SCREEPS_STRUCTURE_ROAD_HPP
|
|
|
|
#include "Structure.hpp"
|
|
|
|
namespace Screeps {
|
|
|
|
class StructureRoad : public Structure
|
|
{
|
|
public:
|
|
explicit StructureRoad(JS::Value value);
|
|
|
|
int ticksToDecay() const;
|
|
};
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_STRUCTURE_ROAD_HPP
|