summaryrefslogtreecommitdiffstats
path: root/src/modules/gamepad/option.h
blob: 64728c08501c33e9cb010b9777c72c83674bf238 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "common/option.h"
#include "common/FFlist.h"

typedef struct FFGamepadOptions {
    FFModuleArgs moduleArgs;

    FFlist ignores; // List of FFstrbuf
    FFPercentageModuleConfig percent;
} FFGamepadOptions;

static_assert(sizeof(FFGamepadOptions) <= FF_OPTION_MAX_SIZE, "FFGamepadOptions size exceeds maximum allowed size");