mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 04:27:42 +00:00
Several initial character classes
This commit is contained in:
22
Runtime/Character/CPASDatabase.hpp
Normal file
22
Runtime/Character/CPASDatabase.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef __PSHAG_CPASDATABASE_HPP__
|
||||
#define __PSHAG_CPASDATABASE_HPP__
|
||||
|
||||
#include "IOStreams.hpp"
|
||||
#include "CPASAnimState.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CPASDatabase
|
||||
{
|
||||
std::vector<CPASAnimState> x0_states;
|
||||
u32 x10_defaultState;
|
||||
void AddAnimState(CPASAnimState&& state);
|
||||
void SetDefaultState(u32 state) {x10_defaultState = state;}
|
||||
public:
|
||||
CPASDatabase(CInputStream& in);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __PSHAG_CPASDATABASE_HPP__
|
||||
Reference in New Issue
Block a user