mirror of
https://gitlab.com/klmp200/LO41.git
synced 2024-11-14 21:03:23 +00:00
18 lines
311 B
C
18 lines
311 B
C
//
|
|
// Created by Antoine Bartuccio on 05/06/2018.
|
|
//
|
|
|
|
#ifndef LO41_COMMUNICATIONBOX_H
|
|
#define LO41_COMMUNICATIONBOX_H
|
|
|
|
#include "../Objects.h"
|
|
|
|
typedef struct o_CommunicationBox {
|
|
|
|
DESTRUCTOR(CommunicationBox);
|
|
} CommunicationBox;
|
|
|
|
CommunicationBox *_init_CommunicationBox();
|
|
|
|
#endif //LO41_COMMUNICATIONBOX_H
|