Cogs.Core
DataSetComponent.h
1#pragma once
2
3#include "Foundation/ComponentModel/Component.h"
4
5#include <vector>
6
7namespace Cogs
8{
9 namespace Core
10 {
12 {
13 std::vector<float> indexes;
14 std::vector<float> values;
15
16 static void registerType();
17 };
18 }
19}
20
21template<> inline Cogs::StringView getName<Cogs::Core::DataSetComponent>() { return "DataSetComponent"; }
Base class for Component instances.
Definition: Component.h:143
Provides a weakly referenced view over the contents of a string.
Definition: StringView.h:24
Contains all Cogs related functionality.
Definition: FieldSetter.h:23