mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 10:05:13 +00:00
20 lines
336 B
C++
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
|