We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8138326 commit 507a20dCopy full SHA for 507a20d
CSync/Lib/SyncedEntry.cs
@@ -1,12 +1,14 @@
1
using System;
2
using BepInEx.Configuration;
3
+using JetBrains.Annotations;
4
5
namespace CSync.Lib;
6
7
/// <summary>
8
/// Wrapper class around a BepInEx <see cref="ConfigEntry{T}"/>.<br>
9
/// Can serialize and deserialize itself to avoid runtime errors when syncing configs.</br>
10
/// </summary>
11
+[PublicAPI]
12
public sealed class SyncedEntry<T> : SyncedEntryBase
13
{
14
private ConfigEntry<T> _entry;
0 commit comments