Cogs.Core
OctProviderComponent.h
1#pragma once
2
3#include "Foundation/ComponentModel/Component.h"
4
5namespace Cogs::Core::EchoSounder
6{
8 {
9 unsigned history = 20;
10 float decibelMin = -70.f;
11 float decibelMax = 0.f;
12
13 static void registerType();
14 };
15}
16
17template<> inline Cogs::StringView getName<Cogs::Core::EchoSounder::OctProviderComponent>() { return "EchoOctProviderComponent"; }
Base class for Component instances.
Definition: Component.h:143
Provides a weakly referenced view over the contents of a string.
Definition: StringView.h:24