diff --git a/sources/engine/Xenko.Rendering/Module.cs b/sources/engine/Xenko.Rendering/Module.cs new file mode 100644 index 000000000..a082355a1 --- /dev/null +++ b/sources/engine/Xenko.Rendering/Module.cs @@ -0,0 +1,17 @@ +// Copyright (c) Xenko contributors (https://xenko.com) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System.Reflection; +using Xenko.Core; +using Xenko.Core.Reflection; + +namespace Xenko.Rendering +{ + internal class Module + { + [ModuleInitializer] + public static void Initialize() + { + AssemblyRegistry.Register(typeof(Module).GetTypeInfo().Assembly, AssemblyCommonCategories.Assets); + } + } +}