18 lines
357 B
C#
18 lines
357 B
C#
using NBC;
|
|
using NBF.Utils;
|
|
|
|
namespace NBF
|
|
{
|
|
public static class IConfigTableExtensions
|
|
{
|
|
public static string GetName(this IConfigTable config)
|
|
{
|
|
return config.Key.GetName();
|
|
}
|
|
|
|
public static string GetDesc(this IConfigTable config)
|
|
{
|
|
return config.Key.GetDesc();
|
|
}
|
|
}
|
|
} |