Skip to content

Commit

Permalink
Nakata headers complete
Browse files Browse the repository at this point in the history
  • Loading branch information
HeartPiece44 committed Sep 23, 2024
1 parent ba79cce commit b928a32
Show file tree
Hide file tree
Showing 190 changed files with 2,761 additions and 5,339 deletions.
19 changes: 19 additions & 0 deletions include/TAI/Action.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,25 @@ struct TaiNotAction : public TaiAction {
// TODO: members
};

/**
* @brief TODO
*/
struct TaiDependenceAction : public TaiAction {
inline TaiDependenceAction() // TODO: this is a guess
: TaiAction(0)
{
}

virtual void start(Teki&); // _08
virtual void finish(Teki&); // _0C
virtual bool act(Teki&); // _10
virtual bool actByEvent(TekiEvent&); // _14

// _04 = VTBL
// _00-_08 = TaiAction
// TODO: members
};

/**
* @brief TODO
*/
Expand Down
Loading

0 comments on commit b928a32

Please sign in to comment.