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

14 lines
253 B
C#
Raw Normal View History

2021-08-01 00:36:37 -04:00
using System;
using System.IO;
namespace PatcherUtils
{
public static class RandomExtensions
{
public static string FromCwd(this string s)
{
return Path.Combine(Environment.CurrentDirectory, s);
}
}
}