Move features/include/*.h to features/features.h

This commit is contained in:
8dcc 2023-07-22 16:22:34 +02:00
parent a92d833e6e
commit db9068d86f
3 changed files with 12 additions and 15 deletions

12
src/features/features.h Normal file
View File

@ -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 */

View File

@ -1,6 +0,0 @@
#ifndef _ESP_H
#define _ESP_H
void esp(void);
#endif /* _ESP_H */

View File

@ -1,9 +0,0 @@
#ifndef _MOVEMENT_H
#define _MOVEMENT_H
#include "../../include/sdk.h"
void bhop(usercmd_t* cmd);
#endif /* _MOVEMENT_H */