Implement resource server

This commit is contained in:
Lexi / Zoe 2026-06-16 21:53:19 +02:00
parent 3addd01f54
commit 718679c13b
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
14 changed files with 332 additions and 232 deletions

View file

@ -0,0 +1,12 @@
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>;
}