mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 07:50:49 -05:00
14 lines
253 B
C#
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|