summaryrefslogtreecommitdiff
path: root/src/toBeSorted/counters/slingshot_seed_counter.cpp
blob: 003551b6224f2dd67f3b9c9527d7320a4bf73a12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "toBeSorted/counters/counter.h"

class SlingshotSeedCounter : public Counter {
public:
    SlingshotSeedCounter();
    ~SlingshotSeedCounter() {}
    virtual u16 getMax() const override {
        return 20;
    };
};

SlingshotSeedCounter SLINGSHOT_SEED_COUNTER;

SlingshotSeedCounter::SlingshotSeedCounter() : Counter(0x1ed) {}