From 0b5de6e192b1714a46826940586b22bbeaebc754 Mon Sep 17 00:00:00 2001 From: ben_singer Date: Thu, 21 Nov 2024 16:12:32 +0000 Subject: [PATCH] Added missing region --- NetAF/Persistence/RestorePoint.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NetAF/Persistence/RestorePoint.cs b/NetAF/Persistence/RestorePoint.cs index 29095672..e96d1530 100644 --- a/NetAF/Persistence/RestorePoint.cs +++ b/NetAF/Persistence/RestorePoint.cs @@ -37,6 +37,8 @@ private RestorePoint() { } #endregion + #region StaticMethods + /// /// Create a new restore point. /// @@ -52,5 +54,7 @@ public static RestorePoint Create(string name, Game game) Game = new(game) }; } + + #endregion } }