12 lines
243 B
C#
12 lines
243 B
C#
using System;
|
|
|
|
namespace Kalk.Core
|
|
{
|
|
public class KalkSettings
|
|
{
|
|
public static void Initialize()
|
|
{
|
|
var userProfilePath = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
|
|
}
|
|
}
|
|
} |