about summary refs log tree commit diff
path: root/converter/pbm/g3prefab.h
blob: 4fa4751a810d1190d74fe6dd5a9ba3a5339af0e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef G3_PREFAB_H_INCLUDED
#define G3_PREFAB_H_INCLUDED

struct PrefabCode {
    unsigned int leadBits;
    unsigned int trailBits;
    struct BitString activeBits;
};


extern struct PrefabCode const g3prefab_code[256];

#endif