-
Notifications
You must be signed in to change notification settings - Fork 0
/
things.h
26 lines (22 loc) · 961 Bytes
/
things.h
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
/******************************************************************************/
/** @file dk2mfile.h
* Library for r/w of DK2 map files.
* @par Purpose:
* Header file. Defines exported routines from dk2mfile.c.
* @par Comment:
* None.
* @author qqluqq
* @par Copying and copyrights:
* 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 2 of the License, or
* (at your option) any later version.
*/
/******************************************************************************/
#ifndef THINGS_H
#define THINGS_H
#include "dk2mfile.h"
#include "../ADiKtEd/libadikted/adikted.h"
short dk2m_read_thingschunk(struct DK2_Level *lvl,const struct DK2M_Chunk *chunk,short flags);
short dk2m_print_things(const struct DK2_Level *lvlDk2,struct LEVEL *lvl,int offset_x,int offset_y);
#endif