mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 01:55:12 +00:00
20 lines
327 B
C++
20 lines
327 B
C++
#ifndef SCREEPS_OWNED_STRUCTURE_HPP
|
|
#define SCREEPS_OWNED_STRUCTURE_HPP
|
|
|
|
#include "Structure.hpp"
|
|
|
|
namespace Screeps {
|
|
|
|
class OwnedStructure : public Structure
|
|
{
|
|
public:
|
|
explicit OwnedStructure(JS::Value value);
|
|
|
|
bool my() const;
|
|
|
|
std::string owner() const;
|
|
};
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_OWNED_STRUCTURE_HPP
|