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