mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-11 03:32:10 +08:00
14 lines
195 B
C
14 lines
195 B
C
|
#ifndef GROUNDLINK_H
|
||
|
#define GROUNDLINK_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
struct groundlink_t
|
||
|
{
|
||
|
EHANDLE entity;
|
||
|
groundlink_t* nextLink;
|
||
|
groundlink_t* prevLink;
|
||
|
};
|
||
|
|
||
|
#endif
|