metaforce/Runtime/Character/CAnimSysContext.hpp

20 lines
489 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-04-13 06:07:23 +00:00
#include "CToken.hpp"
#include "CRandom16.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
2016-04-13 06:07:23 +00:00
class CTransitionDatabaseGame;
class CSimplePool;
2018-12-08 05:30:43 +00:00
struct CAnimSysContext {
TToken<CTransitionDatabaseGame> x0_transDB;
std::shared_ptr<CRandom16> x8_random;
CSimplePool& xc_store;
2016-04-13 06:07:23 +00:00
2018-12-08 05:30:43 +00:00
CAnimSysContext(const TToken<CTransitionDatabaseGame>& transDB, u32 randomSeed, CSimplePool& store)
: x0_transDB(transDB), x8_random(std::make_shared<CRandom16>(randomSeed)), xc_store(store) {}
2016-04-13 06:07:23 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde