mirror of
git://projects.qi-hardware.com/ben-scans.git
synced 2024-11-22 09:50:38 +02:00
17 lines
177 B
C
17 lines
177 B
C
#ifndef FACE_H
|
|
#define FACE_H
|
|
|
|
#include "array.h"
|
|
|
|
|
|
struct face {
|
|
struct array *a;
|
|
int sx, sy;
|
|
int z_ref;
|
|
};
|
|
|
|
|
|
struct face *read_face(const char *name);
|
|
|
|
#endif /* FACE_H */
|