2025-04-27 07:49:33 -04:00

18 lines
300 B
C

/**
** File : hash.h
** Description: Hash table definition
**/
#ifndef _hash_h_
#define _hash_h_
struct hashentry
{
WORD v2;
WORD f, m; // face and it's matid
hashentry* next;
};
typedef hashentry* PHASHENTRY;
#endif //_hash_h_