fix: startup on hlds_l 3111e (still needs nosmid)
build: add option to build bot without any smid instructions refactor: fix static analyzer warnings crlib: update submodule (fix double anglevectors call)
This commit is contained in:
parent
3d84b96534
commit
c7c5e0eaf9
14 changed files with 92 additions and 70 deletions
18
inc/graph.h
18
inc/graph.h
|
|
@ -100,19 +100,19 @@ struct PODGraphHeader {
|
|||
|
||||
// defines linked nodes
|
||||
struct PathLink {
|
||||
Vector velocity;
|
||||
int32_t distance;
|
||||
uint16_t flags;
|
||||
int16_t index;
|
||||
Vector velocity {};
|
||||
int32_t distance {};
|
||||
uint16_t flags {};
|
||||
int16_t index {};
|
||||
};
|
||||
|
||||
// define graph path structure for yapb
|
||||
struct Path {
|
||||
int32_t number, flags;
|
||||
Vector origin, start, end;
|
||||
float radius, light, display;
|
||||
PathLink links[kMaxNodeLinks];
|
||||
PathVis vis;
|
||||
int32_t number {}, flags {};
|
||||
Vector origin {}, start {}, end {};
|
||||
float radius {}, light {}, display {};
|
||||
PathLink links[kMaxNodeLinks] {};
|
||||
PathVis vis {};
|
||||
};
|
||||
|
||||
// define waypoint structure for podbot (will convert on load)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue