screepsxx/include/Screeps/Deposit.hpp
Kirill Kirilenko 3fad4634e9 Add Deposit, Flag, Resource, StructureExtractor, StructureLink classes.
Completed StructureController, StructureExtension, StructureRampart, StructureRoad, StructureSpawn classes.
2021-06-05 17:41:06 +03:00

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