mirror of
https://github.com/p2r3/bareiron.git
synced 2025-10-02 07:35:08 +02:00
12 lines
212 B
C
12 lines
212 B
C
#ifndef CRAFTING_H
|
|
#define CRAFTING_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "globals.h"
|
|
|
|
void getCraftingOutput (PlayerData *player, uint8_t *count, uint16_t *item);
|
|
void getSmeltingOutput (PlayerData *player);
|
|
|
|
#endif
|