Files
SPT-Server-Build/Core/Helpers/PaymentHelper.cs
T
2025-01-11 21:01:32 +00:00

28 lines
640 B
C#

using Core.Annotations;
namespace Core.Helpers;
[Injectable]
public class PaymentHelper
{
/// <summary>
/// Is the passed in tpl money (also checks custom currencies in inventoryConfig.customMoneyTpls)
/// </summary>
/// <param name="tpl"></param>
/// <returns></returns>
public bool IsMoneyTpl(string tpl)
{
throw new NotImplementedException();
}
/// <summary>
/// Gets currency TPL from TAG
/// </summary>
/// <param name="currency"></param>
/// <returns></returns>
public string GetCurrency(string currency)
{
throw new NotImplementedException();
}
}