mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 18:15:12 +00:00
18 lines
271 B
C++
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
|