mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-01-18 18:46:43 +00:00
Getting ready for 0.0.8-alpha
This commit is contained in:
parent
4143417947
commit
963d47afb2
1 changed files with 2 additions and 2 deletions
|
@ -18,13 +18,13 @@ namespace Capy64;
|
||||||
|
|
||||||
public class Capy64 : Game, IGame
|
public class Capy64 : Game, IGame
|
||||||
{
|
{
|
||||||
public const string Version = "0.0.7-alpha";
|
public const string Version = "0.0.8-alpha";
|
||||||
public static string AppDataPath = Path.Combine(
|
public static string AppDataPath = Path.Combine(
|
||||||
Environment.GetFolderPath(
|
Environment.GetFolderPath(
|
||||||
Environment.SpecialFolder.ApplicationData,
|
Environment.SpecialFolder.ApplicationData,
|
||||||
Environment.SpecialFolderOption.Create),
|
Environment.SpecialFolderOption.Create),
|
||||||
"Capy64");
|
"Capy64");
|
||||||
public static Capy64 Instance;
|
public static Capy64 Instance { get; private set; }
|
||||||
public Capy64 Game => this;
|
public Capy64 Game => this;
|
||||||
public IList<IPlugin> NativePlugins { get; private set; }
|
public IList<IPlugin> NativePlugins { get; private set; }
|
||||||
public IList<IPlugin> Plugins { get; private set; }
|
public IList<IPlugin> Plugins { get; private set; }
|
||||||
|
|
Loading…
Reference in a new issue