mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-11 11:33:01 +08:00
29 lines
423 B
C
29 lines
423 B
C
|
#ifndef TOUCHLINK_H
|
||
|
#define TOUCHLINK_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
|
||
|
enum touchlink_flags_t
|
||
|
{
|
||
|
FTOUCHLINK_START_TOUCH = 0x00000001,
|
||
|
};
|
||
|
|
||
|
struct touchlink_t
|
||
|
{
|
||
|
#if defined( CLIENT_DLL )
|
||
|
C_BaseEntity* entityTouched;
|
||
|
#else
|
||
|
EHANDLE entityTouched;
|
||
|
#endif
|
||
|
int touchStamp;
|
||
|
touchlink_t* nextLink;
|
||
|
touchlink_t* prevLink;
|
||
|
int flags;
|
||
|
};
|
||
|
|
||
|
#define TOUCHSTAMP_EVENT_DRIVEN -1
|
||
|
|
||
|
|
||
|
#endif
|