Cogs.Core
CurvedEarthPositionComponent.h
1#pragma once
2
3#include "Components/Core/DynamicComponent.h"
4
5namespace Cogs::Core
6{
7
9 {
10 public:
11 static void registerType();
12 void update();
13
14 glm::vec3 position;
15 };
16
17}
18
19template<> inline Cogs::StringView getName<Cogs::Core::CurvedEarthPositionComponent>() { return "CurvedEarthPositionComponent"; }
Base class for components implementing dynamic behavior.
Provides a weakly referenced view over the contents of a string.
Definition: StringView.h:24
Contains the Engine, Renderer, resource managers and other systems needed to run Cogs....