14 lines
320 B
C#
Raw Normal View History

2024-08-17 14:27:18 +08:00
namespace SRF
{
public static class SRFStringExtensions
{
#if UNITY_EDITOR
[JetBrains.Annotations.StringFormatMethod("formatString")]
#endif
public static string Fmt(this string formatString, params object[] args)
{
return string.Format(formatString, args);
}
}
}