mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-02 08:42:45 +03:00
Some checks are pending
Push / ${{ matrix.build.system_name }} / ${{ matrix.build.build_type }} / ${{ matrix.build.compiler_name }} (map[build_type:Release cc:cl compiler_name:MSVC cxx:cl os:windows-latest system_name:Windows test_path:WhoaTest]) (push) Waiting to run
Push / ${{ matrix.build.system_name }} / ${{ matrix.build.build_type }} / ${{ matrix.build.compiler_name }} (map[build_type:Release cc:clang compiler_name:Clang cxx:clang++ os:macos-latest system_name:macOS test_path:WhoaTest]) (push) Waiting to run
Push / ${{ matrix.build.system_name }} / ${{ matrix.build.build_type }} / ${{ matrix.build.compiler_name }} (map[build_type:Release cc:gcc compiler_name:GCC cxx:g++ os:ubuntu-latest system_name:Linux test_path:WhoaTest]) (push) Waiting to run
25 lines
633 B
C++
25 lines
633 B
C++
#include "object/client/CGCorpse_C.hpp"
|
|
|
|
CGCorpse_C::CGCorpse_C(uint32_t time, CClientObjCreate& objCreate) : CGObject_C(time, objCreate) {
|
|
// TODO
|
|
}
|
|
|
|
CGCorpse_C::~CGCorpse_C() {
|
|
// TODO
|
|
}
|
|
|
|
void CGCorpse_C::PostInit(uint32_t time, const CClientObjCreate& init, bool a4) {
|
|
// TODO
|
|
|
|
this->CGObject_C::PostInit(time, init, a4);
|
|
|
|
// TODO
|
|
}
|
|
|
|
void CGCorpse_C::SetStorage(uint32_t* storage, uint32_t* saved) {
|
|
this->CGObject_C::SetStorage(storage, saved);
|
|
|
|
this->m_corpse = reinterpret_cast<CGCorpseData*>(&storage[CGCorpse::GetBaseOffset()]);
|
|
this->m_corpseSaved = &saved[CGCorpse::GetBaseOffsetSaved()];
|
|
}
|