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
333 B
C++
18 lines
333 B
C++
#ifndef SCREEPS_STRUCTURE_EXTRACTOR_HPP
|
|
#define SCREEPS_STRUCTURE_EXTRACTOR_HPP
|
|
|
|
#include "OwnedStructure.hpp"
|
|
|
|
namespace Screeps {
|
|
|
|
class StructureExtractor : public OwnedStructure
|
|
{
|
|
public:
|
|
explicit StructureExtractor(JS::Value value);
|
|
|
|
int cooldown() const;
|
|
};
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_STRUCTURE_EXTRACTOR_HPP
|