c17c9cd329
Using the short namesapce declaration for conciseness
11 lines
206 B
C#
11 lines
206 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace Icarus.Constants;
|
|
|
|
public class DirectoryPaths
|
|
{
|
|
public static string CoverArtPath =>
|
|
Directory.GetCurrentDirectory() + "/Images/Stock/CoverArt.png";
|
|
}
|