Pol
Revision:cb584c9
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
maptile.h
Go to the documentation of this file.
1
7
#ifndef PLIB_MAPTILE_H
8
#define PLIB_MAPTILE_H
9
namespace
Pol
10
{
11
namespace
Plib
12
{
13
const
unsigned
MAPTILE_CHUNK
= 64;
14
const
unsigned
MAPTILE_SHIFT
= 6;
15
const
unsigned
MAPTILE_CELLMASK
= 0x3f;
16
17
#pragma pack( push, 1 )
18
19
struct
MAPTILE_CELL
20
{
21
unsigned
short
landtile
;
22
signed
char
z
;
23
};
24
25
struct
MAPTILE_BLOCK
26
{
27
MAPTILE_CELL
cell[
MAPTILE_CHUNK
][
MAPTILE_CHUNK
];
28
};
29
30
#pragma pack( pop )
31
}
32
}
33
#endif
Pol::Plib::MAPTILE_CELL::landtile
unsigned short landtile
Definition:
maptile.h:21
Pol::Plib::MAPTILE_CELL::z
signed char z
Definition:
maptile.h:22
Pol::Plib::MAPTILE_SHIFT
const unsigned MAPTILE_SHIFT
Definition:
maptile.h:14
Pol::Plib::MAPTILE_BLOCK
Definition:
maptile.h:25
Pol::Plib::MAPTILE_CHUNK
const unsigned MAPTILE_CHUNK
Definition:
maptile.h:13
Pol::Plib::MAPTILE_CELL
Definition:
maptile.h:19
Pol
Definition:
berror.cpp:12
Pol::Plib::MAPTILE_CELLMASK
const unsigned MAPTILE_CELLMASK
Definition:
maptile.h:15
plib
maptile.h
Generated on Wed Oct 10 2018 02:41:52 for Pol by
1.8.11