mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
10 lines
286 B
Plaintext
10 lines
286 B
Plaintext
// Recipe type defines. Used to determine what machine makes them.
|
|
#define MICROWAVE 0x1
|
|
#define FRYER 0x2
|
|
#define OVEN 0x4
|
|
#define GRILL 0x8
|
|
#define CANDYMAKER 0x10
|
|
#define CEREALMAKER 0x20
|
|
|
|
#define RECIPE_REAGENT_REPLACE 0 //Reagents in the ingredients are discarded.
|