mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-07 10:03:29 +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 |