mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-23 09:04:21 +00:00
12 lines
161 B
C++
12 lines
161 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
|
|
namespace al {
|
|
class IntervalTrigger {
|
|
public:
|
|
IntervalTrigger(f32);
|
|
void update(f32);
|
|
};
|
|
} // namespace al
|