13 lines
280 B
C#

using System.Collections.Generic;
namespace ET.Server
{
[ComponentOf(typeof(Scene))]
public sealed class DBSaveComponent : Entity, IAwake, IDestroy
{
public readonly HashSet<string> DirtyAccounts = new();
public int FlushIntervalMs = 30_000;
}
}