1
0
mirror of https://gitlab.com/klmp200/LO41.git synced 2025-07-13 05:09:30 +00:00
Files
LO41/Passenger/Passenger.h
2018-06-18 16:09:28 +02:00

22 lines
370 B
C

//
// Created by Antoine Bartuccio on 18/06/2018.
//
#ifndef LO41_PASSENGER_H
#define LO41_PASSENGER_H
#include "../Resident/Resident.h"
#include "../Visitor/Visitor.h"
typedef enum {RESIDENT, VISITOR} PASSENGER_TYPE;
typedef struct s_Passenger {
PASSENGER_TYPE type;
union {
Resident * resident;
Visitor * visitor;
};
} Passenger;
#endif //LO41_PASSENGER_H