mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
23 lines
383 B
C++
23 lines
383 B
C++
#pragma once
|
|
|
|
#include <revolution.h>
|
|
|
|
class ValueControl {
|
|
public:
|
|
ValueControl(int);
|
|
|
|
void setDirToOne();
|
|
void setDirToOneResetFrame();
|
|
void setDirToZero();
|
|
void setDirToZeroResetFrame();
|
|
void setMaxFrame(int);
|
|
void update();
|
|
void setZero();
|
|
void setOne();
|
|
f32 getValue() const;
|
|
void resetFrame();
|
|
|
|
s32 _0;
|
|
int _4;
|
|
s32 _8;
|
|
}; |