F4MP/codigos originales/tiltedcode/Code/common/Cell.h
2026-01-06 18:53:59 +01:00

11 lines
118 B
C++

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