mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 10:05:13 +00:00
Completed StructureController, StructureExtension, StructureRampart, StructureRoad, StructureSpawn classes.
26 lines
384 B
C++
26 lines
384 B
C++
#ifndef SCREEPS_DEPOSIT_HPP
|
|
#define SCREEPS_DEPOSIT_HPP
|
|
|
|
#include "RoomObject.hpp"
|
|
|
|
namespace Screeps {
|
|
|
|
class Deposit : public RoomObject
|
|
{
|
|
public:
|
|
explicit Deposit(JS::Value value);
|
|
|
|
int cooldown() const;
|
|
|
|
std::string depositType() const;
|
|
|
|
std::string id() const;
|
|
|
|
int lastCooldown() const;
|
|
|
|
int ticksToDecay() const;
|
|
};
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_DEPOSIT_HPP
|