add alias for preset_store (shorten typing)

This commit is contained in:
Joseph Lenox 2018-11-18 01:18:51 -06:00 committed by Joseph Lenox
parent e8f98e424f
commit 3c0e40ac5d

View File

@ -33,6 +33,7 @@ constexpr size_t preset_types = get_preset(preset_t::Last);
class Preset;
using Presets = std::vector<Preset>;
using preset_store = std::array<Presets, preset_types>;
class PresetEditor;