mirror of https://github.com/AxioDL/metaforce.git
CAuiEnergyBarT01: Convert typedef into using alias
Same behavior, but nicer to read.
This commit is contained in:
parent
15e4d4aa01
commit
e534f00706
|
@ -16,7 +16,7 @@ class CSimplePool;
|
||||||
|
|
||||||
class CAuiEnergyBarT01 : public CGuiWidget {
|
class CAuiEnergyBarT01 : public CGuiWidget {
|
||||||
public:
|
public:
|
||||||
typedef std::pair<zeus::CVector3f, zeus::CVector3f> (*FCoordFunc)(float t);
|
using FCoordFunc = std::pair<zeus::CVector3f, zeus::CVector3f> (*)(float t);
|
||||||
enum class ESetMode { Normal, Wrapped, Insta };
|
enum class ESetMode { Normal, Wrapped, Insta };
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in New Issue