OpenBarnyard
 
Loading...
Searching...
No Matches
AKeyframeLibStreamJob.h
Go to the documentation of this file.
1#pragma once
2#include "AMainThreadJob.h"
3
4#include <Render/TAnimation.h>
5#include <File/TFileStream.h>
6
7class AKeyframeLibStreamJob : public Toshi::TFileStreamJob
8{
9public:
11 virtual void Process() override;
12
13 void Init( const TCHAR* a_szFileName );
14
15 Toshi::TKeyframeLibrary* GetLibrary() const { return m_pLibrary; }
16 const TCHAR* GetName() const { return m_szName; }
17
18private:
19 Toshi::TKeyframeLibrary* m_pLibrary;
20 TCHAR m_szName[ 64 ];
21};
File stream interface for the Toshi engine.
char TCHAR
Definition Typedefs.h:20
void Init(const TCHAR *a_szFileName)
const TCHAR * GetName() const
Toshi::TKeyframeLibrary * GetLibrary() const
virtual void Process() override