mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 01:55:12 +00:00
22 lines
364 B
C++
22 lines
364 B
C++
#ifndef SCREEPS_STRUCTURE_CONTAINER_HPP
|
|
#define SCREEPS_STRUCTURE_CONTAINER_HPP
|
|
|
|
#include "Structure.hpp"
|
|
|
|
namespace Screeps {
|
|
|
|
class Store;
|
|
|
|
class StructureContainer : public Structure
|
|
{
|
|
public:
|
|
explicit StructureContainer(JS::Value value);
|
|
|
|
Store store() const;
|
|
|
|
int ticksToDecay() const;
|
|
};
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_STRUCTURE_CONTAINER_HPP
|