mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 01:55:12 +00:00
18 lines
247 B
C++
18 lines
247 B
C++
#ifndef SCREEPS_MEMORY_HPP
|
|
#define SCREEPS_MEMORY_HPP
|
|
|
|
#include "Object.hpp"
|
|
|
|
namespace Screeps {
|
|
|
|
class MemoryObject : public Object
|
|
{
|
|
public:
|
|
MemoryObject();
|
|
};
|
|
|
|
extern MemoryObject Memory;
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_MEMORY_HPP
|