#ifndef __IPLAYKEYS__H__ #define __IPLAYKEYS__H__ #include #include class IPlayKeys { public: // Get the playkey id for the given playkey. // Optional of bool may seem pointless, however the optional indicates if the playkey exists // and the bool indicates if the playkey is active. virtual std::optional IsPlaykeyActive(const int32_t playkeyId) = 0; }; #endif //!__IPLAYKEYS__H__