mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-10-30 07:11:05 +00:00
17 lines
308 B
C++
17 lines
308 B
C++
#pragma once
|
|
|
|
#include <SWA.inl>
|
|
|
|
namespace SWA::Inspire
|
|
{
|
|
class CMovieOverlayInfo
|
|
{
|
|
public:
|
|
Hedgehog::Base::CSharedString m_MovieName;
|
|
be<float> m_Prepare;
|
|
be<float> m_InStart;
|
|
be<float> m_InEnd;
|
|
be<float> m_OutStart;
|
|
be<float> m_OutEnd;
|
|
};
|
|
}
|