DeltaVR/Assets/Asset Cleaner/Data/Globals/PersistentUndoRedoState.cs
2021-02-23 02:13:14 +02:00

15 lines
374 B
C#

using System;
using System.Collections.Generic;
namespace Asset_Cleaner {
[Serializable]
class PersistentUndoRedoState {
public List<SelectionEntry> History = new List<SelectionEntry>();
public int Id;
public void Deconstruct(out List<SelectionEntry> list, out int id) {
id = Id;
list = History;
}
}
}