mirror of
https://github.com/kirirururu/screepsxx.git
synced 2026-06-14 17:30:42 +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
|