mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-23 14:41:33 -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>
33 lines
557 B
C++
33 lines
557 B
C++
#ifndef D_A_NPC_FISH_H
|
|
#define D_A_NPC_FISH_H
|
|
|
|
#include "d/actor/d_a_npc.h"
|
|
|
|
/**
|
|
* @ingroup actors-npcs
|
|
* @class npc_fish_class
|
|
* @brief Fish
|
|
*
|
|
* @details Multi-purpose fish actor. Used for various fish types.
|
|
*
|
|
*/
|
|
class npc_fish_class : public fopAc_ac_c {
|
|
/* 0x568 */ u8 field_0x568[0x5b4 - 0x568]; // unused in TU, unsure of type
|
|
};
|
|
|
|
struct fish_data_s {
|
|
/* 0x00 */ int param;
|
|
/* 0x04 */ Vec pos;
|
|
/* 0x10 */ u8 field_0x10;
|
|
};
|
|
|
|
struct fish_pos {
|
|
public:
|
|
u8 param;
|
|
f32 pos_x;
|
|
f32 pos_z;
|
|
};
|
|
|
|
|
|
#endif /* D_A_NPC_FISH_H */
|