mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 01:55:12 +00:00
16 lines
314 B
C++
16 lines
314 B
C++
#ifndef SCREEPS_STRUCTURE_CONTROLLER_HPP
|
|
#define SCREEPS_STRUCTURE_CONTROLLER_HPP
|
|
|
|
#include "OwnedStructure.hpp"
|
|
|
|
namespace Screeps {
|
|
|
|
class StructureController : public OwnedStructure
|
|
{
|
|
public:
|
|
explicit StructureController(JS::Value value);
|
|
};
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_STRUCTURE_CONTROLLER_HPP
|