2016-01-03 04:37:44 +01:00
|
|
|
/*
|
|
|
|
Copyright (C) 2003 Parallel Realities
|
|
|
|
Copyright (C) 2011 Guus Sliepen
|
2020-05-24 03:10:45 +02:00
|
|
|
Copyright (C) 2015-2020 Layla Marchant <diligentcircle@riseup.net>
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 3
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef EVENT_H
|
|
|
|
#define EVENT_H
|
|
|
|
|
2016-11-26 00:21:31 +01:00
|
|
|
#include "defs.h"
|
|
|
|
#include "structs.h"
|
|
|
|
|
2016-01-03 04:37:44 +01:00
|
|
|
typedef struct Event_ {
|
|
|
|
|
2016-01-12 20:43:42 +01:00
|
|
|
int time;
|
2016-01-03 04:37:44 +01:00
|
|
|
int face;
|
2019-06-02 17:28:26 +02:00
|
|
|
char message[STRMAX];
|
2016-01-03 04:37:44 +01:00
|
|
|
int entity;
|
|
|
|
int flag;
|
|
|
|
|
|
|
|
} Event;
|
|
|
|
|
2016-01-03 20:14:31 +01:00
|
|
|
void events_init();
|
2016-01-03 20:31:39 +01:00
|
|
|
void events_check();
|
|
|
|
void events_sync();
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
#endif
|