Cogs.Core
TriggerComponent.h
1#pragma once
2
3#include "Foundation/ComponentModel/Component.h"
4
5namespace Cogs
6{
7 namespace Core
8 {
10 {
11 public:
13 static void registerType();
14 };
15 }
16}
17
18template<> inline Cogs::StringView getName<Cogs::Core::TriggerComponent>() { return "TriggerComponent"; }
Base class for Component instances.
Definition: Component.h:143
static void registerType()
Register the type in the type system.
Provides a weakly referenced view over the contents of a string.
Definition: StringView.h:24
Contains all Cogs related functionality.
Definition: FieldSetter.h:23