0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 02:10:47 -05:00
patcher/Patcher/PatcherUtils/RandomExtensions.cs

14 lines
253 B
C#

using System;
using System.IO;
namespace PatcherUtils
{
public static class RandomExtensions
{
public static string FromCwd(this string s)
{
return Path.Combine(Environment.CurrentDirectory, s);
}
}
}