Skip to content

Commit 8a944d2

Browse files
committed
added todo for some playermove struct fields
1 parent 97bc563 commit 8a944d2

2 files changed

Lines changed: 19 additions & 10 deletions

File tree

reapi/src/member_list.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -681,6 +681,15 @@ member_t memberlist_playermove[] = {
681681
PMOVE_MEMBERS(physinfo),
682682
PMOVE_MEMBERS(player_mins),
683683
PMOVE_MEMBERS(player_maxs),
684+
685+
// TODO: Impl me!
686+
//PMOVE_MEMBERS(physents),
687+
//PMOVE_MEMBERS(nummoveent),
688+
//PMOVE_MEMBERS(moveents),
689+
//PMOVE_MEMBERS(numvisent),
690+
//PMOVE_MEMBERS(visents),
691+
//PMOVE_MEMBERS(touchindex),
692+
//PMOVE_MEMBERS(movevars),
684693
};
685694

686695
member_t memberlist_movevars[] = {

reapi/src/member_list.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -660,20 +660,20 @@ enum PlayerMove
660660
pm_vuser3,
661661
pm_vuser4,
662662
pm_numphysent,
663-
664-
/* physent_t physents[MAX_PHYSENTS];
665-
pm_nummoveent; // Number of momvement entities (ladders)
666-
physent_t moveents[MAX_MOVEENTS]; // just a list of ladders
667-
pm_numvisent; // All things being rendered, for tracing against things you don't actually collide with
668-
physent_t visents[MAX_PHYSENTS];*/
669-
670663
pm_cmd,
671664
pm_numtouch,
672-
//pm_touchindex,
673665
pm_physinfo,
674-
//pm_movevars,
675666
pm_player_mins,
676-
pm_player_maxs
667+
pm_player_maxs,
668+
669+
// TODO: Impl me!
670+
//pm_physents,
671+
//pm_nummoveent,
672+
//pm_moveents,
673+
//pm_numvisent
674+
//pm_visents,
675+
//pm_touchindex,
676+
//pm_movevars,
677677
};
678678

679679
enum MoveVars

0 commit comments

Comments
 (0)