/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: NoncanonicalInput.hpp Date: 2022-5-18 Author: Reece ***/ #pragma once namespace Aurora::Console::ConsoleStd { struct NoncanonicalInput { ENoncanonicalInput type; AuString string; int scrollDeltaY {}; bool isControlSequence {}; bool isAltSequence {}; bool isShiftSequence {}; }; }