Skylicht Engine
Loading...
Searching...
No Matches
CTweenVector2df.h
1#pragma once
2
3#include "CTween.h"
4
5namespace Skylicht
6{
7 class SKYLICHT_API CTweenVector2df : public CTween
8 {
9 protected:
10 core::vector2df m_value;
11
12 public:
13 CTweenVector2df(const core::vector2df& begin, const core::vector2df& end, float duration);
14
15 virtual ~CTweenVector2df();
16
17 virtual void updateValue();
18
19 void setBegin(const core::vector2df& begin);
20
21 void setEnd(const core::vector2df& end);
22
23 const core::vector2df& getValue()
24 {
25 return m_value;
26 }
27 };
28}
Everything in the Skylicht Engine. You can start by looking at the topics.
Definition AudioDebugLog.h:29