screepsxx/include/Screeps/StructureStorage.hpp
2021-05-30 01:14:25 +03:00

20 lines
336 B
C++

#ifndef SCREEPS_STRUCTURE_STORAGE_HPP
#define SCREEPS_STRUCTURE_STORAGE_HPP
#include "OwnedStructure.hpp"
namespace Screeps {
class Store;
class StructureStorage : public OwnedStructure
{
public:
explicit StructureStorage(JS::Value value);
Store store() const;
};
} // namespace Screeps
#endif // SCREEPS_STRUCTURE_STORAGE_HPP