mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-23 21:59:53 +00:00
18 lines
201 B
C
18 lines
201 B
C
/**
|
|
* @file geom.h
|
|
*/
|
|
#ifndef GEOM_H
|
|
#define GEOM_H
|
|
|
|
#include "common.h"
|
|
|
|
struct EDGE
|
|
{
|
|
ushort aipos[2];
|
|
ushort aisurf[2];
|
|
EDGE *pedgeNext;
|
|
EDGE *pedgeOtherNext;
|
|
};
|
|
|
|
#endif // GEOM_H
|