Move features/include/*.h to features/features.h
This commit is contained in:
parent
a92d833e6e
commit
db9068d86f
|
@ -0,0 +1,12 @@
|
|||
#ifndef _FEATURES_H
|
||||
#define _FEATURES_H
|
||||
|
||||
#include "../include/sdk.h"
|
||||
|
||||
/* src/features/movement.c */
|
||||
void bhop(usercmd_t* cmd);
|
||||
|
||||
/* src/features/esp.c */
|
||||
void esp(void);
|
||||
|
||||
#endif /* _FEATURES_H */
|
|
@ -1,6 +0,0 @@
|
|||
#ifndef _ESP_H
|
||||
#define _ESP_H
|
||||
|
||||
void esp(void);
|
||||
|
||||
#endif /* _ESP_H */
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
#ifndef _MOVEMENT_H
|
||||
#define _MOVEMENT_H
|
||||
|
||||
#include "../../include/sdk.h"
|
||||
|
||||
void bhop(usercmd_t* cmd);
|
||||
|
||||
#endif /* _MOVEMENT_H */
|
Loading…
Reference in New Issue