mirror of
https://github.com/kirirururu/screepsxx.git
synced 2026-06-14 17:30:42 +00:00
16 lines
228 B
C++
16 lines
228 B
C++
#ifndef SCREEPS_RUIN_HPP
|
|
#define SCREEPS_RUIN_HPP
|
|
|
|
#include "RoomObject.hpp"
|
|
|
|
namespace Screeps {
|
|
|
|
class Ruin : public RoomObject
|
|
{
|
|
public:
|
|
explicit Ruin(JS::Value value);
|
|
};
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_RUIN_HPP
|