mirror of
https://github.com/kirirururu/screepsxx.git
synced 2026-06-14 17:30:42 +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
|