13 lines
241 B
C#
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;
|
|
}
|
|
} |