mirror of
https://gitlab.com/klmp200/LO41.git
synced 2024-11-22 08:43:22 +00:00
18 lines
247 B
C
18 lines
247 B
C
//
|
|
// Created by Antoine Bartuccio on 05/06/2018.
|
|
//
|
|
|
|
#ifndef LO41_ELEVATOR_H
|
|
#define LO41_ELEVATOR_H
|
|
|
|
#include "../Objects.h"
|
|
|
|
typedef struct o_Elevator {
|
|
|
|
DESTRUCTOR(Elevator);
|
|
} Elevator;
|
|
|
|
Elevator *_init_Elevator();
|
|
|
|
#endif //LO41_ELEVATOR_H
|