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