From 963d47afb2d5165aaddeb556dd37614f343e3b03 Mon Sep 17 00:00:00 2001 From: Alessandro Proto Date: Sun, 12 Feb 2023 11:22:16 +0100 Subject: [PATCH] Getting ready for 0.0.8-alpha --- Capy64/Capy64.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Capy64/Capy64.cs b/Capy64/Capy64.cs index eade08e..b1704e8 100644 --- a/Capy64/Capy64.cs +++ b/Capy64/Capy64.cs @@ -18,13 +18,13 @@ namespace Capy64; 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( Environment.GetFolderPath( Environment.SpecialFolder.ApplicationData, Environment.SpecialFolderOption.Create), "Capy64"); - public static Capy64 Instance; + public static Capy64 Instance { get; private set; } public Capy64 Game => this; public IList NativePlugins { get; private set; } public IList Plugins { get; private set; }