screepsxx/include/Screeps/RawMemory.hpp
2021-05-30 01:14:25 +03:00

18 lines
271 B
C++

#ifndef SCREEPS_RAW_MEMORY_HPP
#define SCREEPS_RAW_MEMORY_HPP
#include "Object.hpp"
namespace Screeps {
class RawMemoryObject : public Object
{
public:
RawMemoryObject();
};
extern RawMemoryObject RawMemory;
} // namespace Screeps
#endif // SCREEPS_RAW_MEMORY_HPP