From c7118d7abcb79af46dd87c455bc4f13cde0cb61d Mon Sep 17 00:00:00 2001 From: Danilo Date: Sat, 27 Apr 2024 15:31:23 -0300 Subject: [PATCH] Adiciona ServiceContainer --- framework/game/servicecontainer.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 framework/game/servicecontainer.hpp diff --git a/framework/game/servicecontainer.hpp b/framework/game/servicecontainer.hpp new file mode 100644 index 0000000..2ce68aa --- /dev/null +++ b/framework/game/servicecontainer.hpp @@ -0,0 +1,14 @@ +#ifndef XNA_GAME_SERVICECONTAINER_HPP +#define XNA_GAME_SERVICECONTAINER_HPP + +#include "../default.hpp" + +namespace xna { + class IServiceProvider { + }; + + class GameServiceContainer { + }; +} + +#endif \ No newline at end of file