mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
* DiscType -> MediaType * Fix bulk find/replace * Add OrderedDictionary * Stage 1 of moving off of Tuples * Add CHANGELIST.md * Stage 2 of Tuple removal * String replacement for output paths * Stage 3 of Tuple removal * Slight reordering
11 lines
333 B
C#
11 lines
333 B
C#
using System.Collections.Generic;
|
|
using System.Collections.Specialized;
|
|
|
|
namespace DICUI.External
|
|
{
|
|
// Adapted from https://www.codeproject.com/Articles/18615/OrderedDictionary-T-A-generic-implementation-of-IO
|
|
public interface IOrderedDictionary<TKey, TValue> : IOrderedDictionary, IDictionary<TKey, TValue>
|
|
{
|
|
}
|
|
}
|