TH1/Unity/Assets/Scripts/Loader/AssemblyReference.cs
2025-07-17 18:26:28 +08:00

12 lines
302 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace ET
{
// mono层调用一下让Unity引用相应的dll否则热更层无法使用
public static class AssemblyReference
{
public static void Run()
{
using System.Net.Http.HttpClient httpClient = new System.Net.Http.HttpClient();
}
}
}