Seaside/SpyCustom/groundlink.h
2021-06-16 16:10:20 +03:00

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