Archived
forked from RDTKEditor/RDTKEditor
18 lines
430 B
C#
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
|
|
}
|
|
}
|