diff options
Diffstat (limited to 'src/emap/homunculus.c')
-rw-r--r-- | src/emap/homunculus.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/emap/homunculus.c b/src/emap/homunculus.c new file mode 100644 index 0000000..df9bafb --- /dev/null +++ b/src/emap/homunculus.c @@ -0,0 +1,24 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 - 2015 Evol developers + +#include "common/hercules.h" + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#include "common/HPMi.h" +#include "common/nullpo.h" + +#include "emap/send.h" + +int ehomunculus_gainexp_pre(struct homun_data **hdPtr, + unsigned int *expPtr) +{ + struct homun_data *hd = *hdPtr; + nullpo_ret(hd); + const int exp = *expPtr; + + send_homun_exp(hd, exp); + return 0; +} |