48f9914a1f
Removing comments, some cleanup, and moving the startup code into Program.cs
14 lines
390 B
C#
14 lines
390 B
C#
namespace Icarus.Constants;
|
|
|
|
public class FileExtensions
|
|
{
|
|
// Contains file extension with period at the beginning
|
|
public static string MP3_EXTENSION = ".mp3";
|
|
|
|
// Contains file extension with period at the beginning
|
|
public static string WAV_EXTENSION = ".wav";
|
|
|
|
// Contains file extension with period at the beginning
|
|
public static string JPG_EXTENSION = ".jpg";
|
|
}
|