mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
18 lines
256 B
C++
18 lines
256 B
C++
#pragma once
|
|
|
|
#include <revolution.h>
|
|
|
|
class SpringValue {
|
|
public:
|
|
SpringValue();
|
|
SpringValue(f32, f32, f32, f32, f32);
|
|
|
|
void setParam(f32, f32, f32, f32, f32);
|
|
void update();
|
|
|
|
f32 _0;
|
|
f32 _4;
|
|
f32 _8;
|
|
f32 _C;
|
|
f32 _10;
|
|
}; |