We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec7b852 commit a88af44Copy full SHA for a88af44
GameFrameX.Launcher/Program.cs
@@ -29,9 +29,7 @@
29
// Official Documentation: https://gameframex.doc.alianblank.com/
30
// ==========================================================================================
31
32
-using System.Reflection;
33
using GameFrameX.NetWork.Abstractions;
34
-using GameFrameX.Proto.BuiltIn;
35
36
namespace GameFrameX.Launcher;
37
@@ -42,7 +40,7 @@ private static async Task Main(string[] args)
42
40
await GameApp.Entry(args, () =>
43
41
{
44
CacheStateTypeManager.Init();
45
- MessageProtoHelper.Init(typeof(MessageProtoBuildInTag).Assembly, typeof(MessageProtoHandler).Assembly);
+ MessageProtoHelper.Init(typeof(MessageProtoHandler).Assembly);
46
}, LogConfiguration);
47
}
48
0 commit comments