mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-02 01:30:00 -04:00
178194ccb2
* switch to dtk setup * some cleanup / fixes * cleanup d_a_alink literals * Restore doxygen, update CI & README.md (#1) * Fix build image ref (#2) --------- Co-authored-by: Luke Street <luke@street.dev>
21 lines
300 B
C++
21 lines
300 B
C++
/**
|
|
* d_a_item_static.cpp
|
|
*
|
|
*/
|
|
|
|
#include "d/d_a_item_static.h"
|
|
|
|
u32 daItem_c::startCtrl() {
|
|
setFlag(FLAG_NO_MOVE_e);
|
|
return 1;
|
|
}
|
|
|
|
u32 daItem_c::startControl() {
|
|
mStatus = STATUS_ENEMY_CARRY_e;
|
|
return 1;
|
|
}
|
|
|
|
u32 daItem_c::endControl() {
|
|
mStatus = STATUS_NORMAL_e;
|
|
return 1;
|
|
} |