mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2025-12-05 13:16:06 +01:00
8 lines
112 B
C++
8 lines
112 B
C++
#pragma once
|
|
#include "common.h"
|
|
|
|
class Curve
|
|
{
|
|
public:
|
|
virtual fix32<26> Compute(fix32<26> t) const = 0;
|
|
}; |