mirror of
https://github.com/AndroidAudioMods/ViPERFX_RE.git
synced 2025-06-23 16:42:36 +08:00
20 lines
235 B
C++
20 lines
235 B
C++
//
|
|
// Created by mart on 7/26/21.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
class TubeSimulator {
|
|
public:
|
|
TubeSimulator();
|
|
|
|
void Reset();
|
|
void TubeProcess(float* buffer, uint32_t size);
|
|
|
|
float acc[2];
|
|
bool enabled;
|
|
};
|
|
|