Skip to content

Commit

Permalink
work around due to stride3d/stride#2200
Browse files Browse the repository at this point in the history
  • Loading branch information
Doprez committed Mar 27, 2024
1 parent 6661f9d commit 7bc28e9
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
19 changes: 19 additions & 0 deletions TR.Stride.Atmosphere/Module.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using Stride.Core;
using Stride.Core.Reflection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;

namespace TR.Stride.Atmosphere;
internal class Module
{
[ModuleInitializer]
public static void Initialize()
{
// Make sure that this assembly is registered
AssemblyRegistry.Register(typeof(Module).GetTypeInfo().Assembly, AssemblyCommonCategories.Assets);
}
}
19 changes: 19 additions & 0 deletions TR.Stride.Ocean/Module.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using Stride.Core;
using Stride.Core.Reflection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;

namespace TR.Stride.Ocean;
internal class Module
{
[ModuleInitializer]
public static void Initialize()
{
// Make sure that this assembly is registered
AssemblyRegistry.Register(typeof(Module).GetTypeInfo().Assembly, AssemblyCommonCategories.Assets);
}
}
19 changes: 19 additions & 0 deletions TR.Stride.Terrain/Module.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using Stride.Core;
using Stride.Core.Reflection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;

namespace TR.Stride.Terrain;
internal class Module
{
[ModuleInitializer]
public static void Initialize()
{
// Make sure that this assembly is registered
AssemblyRegistry.Register(typeof(Module).GetTypeInfo().Assembly, AssemblyCommonCategories.Assets);
}
}

0 comments on commit 7bc28e9

Please sign in to comment.