SMAPI/ModLoader/Common/Constants.cs

24 lines
709 B
C#
Raw Normal View History

2019-05-13 22:33:45 +08:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
namespace ModLoader.Common
{
class Constants
{
public static string GamePath { get; } = Path.Combine(Android.OS.Environment.ExternalStorageDirectory.Path, "SMDroid/");
public static string AssemblyPath { get; } = Path.Combine(GamePath, "Game/assemblies/");
public static string ModPath { get; } = Path.Combine(GamePath, "Mods");
public static string ContentPath { get; } = Path.Combine(Constants.GamePath, "Game/assets/Content");
}
}