lovespouse.h 437 B

12345678910111213141516171819
  1. #pragma once
  2. #include "_base.h"
  3. // Hacked together by @Willy-JL
  4. // Discovered by @mandomat
  5. // Blog post at https://mandomat.github.io/2023-11-13-denial-of-pleasure/
  6. typedef enum {
  7. LovespouseStatePlay = 0x01, // Skip 0 as it means unset
  8. LovespouseStateStop,
  9. LovespouseStateCOUNT,
  10. } LovespouseState;
  11. typedef struct {
  12. LovespouseState state;
  13. uint32_t mode;
  14. } LovespouseCfg;
  15. extern const Protocol protocol_lovespouse;