mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-07-12 18:18:56 -07:00
CCredits fixes Add proper constructor CInputStream to rstl::pair CParticleSwooshDataFactory matches
19 lines
459 B
C++
19 lines
459 B
C++
#ifndef _CADDITIVEANIMATIONINFO
|
|
#define _CADDITIVEANIMATIONINFO
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
class CAdditiveAnimationInfo {
|
|
public:
|
|
CAdditiveAnimationInfo(const float fadeInDur, const float fadeOutDur)
|
|
: x0_fadeInDur(fadeInDur), x4_fadeOutDur(fadeOutDur) {}
|
|
CAdditiveAnimationInfo(CInputStream& in)
|
|
: x0_fadeInDur(in.Get< float >()), x4_fadeOutDur(in.Get< float >()) {}
|
|
|
|
private:
|
|
float x0_fadeInDur;
|
|
float x4_fadeOutDur;
|
|
};
|
|
|
|
#endif
|