forked from yoelsusanto/Engi-s-Kitchen-Extended
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.c
More file actions
47 lines (43 loc) · 867 Bytes
/
Copy pathdata.c
File metadata and controls
47 lines (43 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include "data.h"
/* Definition of global variable */
const char * JenisBahan[MAX_BAHAN] =
{
"Piring", //0
"Sendok", //1
"Garpu", //2
"EsKrim", //3
"Nasi", //4
"Roti", //5
"Spaghetti", //6
"Pisang", //7
"Stroberi", //8
"Telur", //9
"AyamGoreng", //10
"Patty", //11
"Sosis", //12
"Bolognese", //13
"Carbonara", //14
"Keju" //15
};
const char * JenisMakanan[MAX_MAKANAN] =
{
"BananaSplit", //0
"Sundae", //1
"NasiTelurDadar", //2
"NasiAyamGoreng", //3
"Burger", //4
"HotDog", //5
"Keju", //6
"SpaghettiCarbonara", //7
"SpaghettiBolognese" //8
};
SimulationData GameData;
Stack Hand;
Stack Tray;
TypeQueueCustomer QWaitingC; // Waiting customer
TypeQueueCustomer QSeatedC;
TabOrder TabOrders;
Ruangan Room [4+1];
BinTree Resep;
Graph Door;
Meja DMeja[MAX_MEJA+1];