F4MP/codigos originales/tiltedcode/Code/common/Cell.h

12 lines
118 B
C
Raw Permalink Normal View History

#pragma once
#include <memory>
struct Map;
struct Cell
{
using Pointer = std::shared_ptr<Cell>;
Cell();
};