This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RDTKEditor/RhythmBaseCore/Settings/UnreadableEventHandling.cs
T

18 lines
430 B
C#

namespace RhythmBase.Settings
{
/// <summary>
/// Actions performed on items with exceptions during reads.
/// </summary>
public enum UnreadableEventHandling
{
/// <summary>
/// Stores unreadable events in <see cref="P:RhythmBase.Settings.LevelReadOrWriteSettings.UnreadableEvents" /> for restoration.
/// </summary>
Store,
/// <summary>
/// An exception will be thrown.
/// </summary>
ThrowException
}
}