feat: remove functionToTest

This commit is contained in:
Jorens Shtekels 2024-03-12 22:39:51 +02:00
parent 93791b4ef6
commit 423669ab42
2 changed files with 0 additions and 5 deletions

View File

@ -96,7 +96,3 @@ bool isActionAllowed(const Action *action, std::vector<Event> *relevantEvents) {
}
return allowed;
}
int functionToTest(int a) {
return a * 2;
}

View File

@ -6,4 +6,3 @@ bool playerBelongsToRoom(Player *player, Room *room);
bool actionBelongsToRole(Role *role, const Action *action);
bool isActionAllowed(const Action *action, std::vector<Event> *relevantEvents);
int validateAction(Player *actor, const Action *action, Room *room, std::vector<Event> *relatedEvents, Player *target);
int functionToTest(int);