rutile-game/src/rutile/core/common.cppm

13 lines
244 B
Text
Raw Normal View History

2026-06-16 21:53:19 +02:00
module;
export module rutile.core.common;
import std;
export namespace rutile
{
// Alias for shared_ptr to be used for shared resource pointers (see ResourceServer)
template <typename T>
using ResourcePtr = std::shared_ptr<T>;
}