summaryrefslogtreecommitdiff
path: root/include/d/actor/d_a_npc_fish.h
blob: 46aaabf7f5640dd9c09fcb8973b3134900cd6666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#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 */