Files
Fishing2Server/Tools/SourceCode/Fantasy.Tools.ConfigTable/Exporter/ConfigTableHelper.cs
2025-06-30 10:51:37 +08:00

13 lines
241 B
C#

using Fantasy.Serialize;
#pragma warning disable CS8603 // Possible null reference return.
namespace Fantasy;
public static class ConfigTableHelper
{
public static T Load<T>() where T : ASerialize
{
return default;
}
}