mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-05 22:23:34 +00:00
14 lines
239 B
C
14 lines
239 B
C
#ifndef SCONNECTION_H
|
|
#define SCONNECTION_H
|
|
|
|
#include <Common/types.h>
|
|
|
|
struct SLink
|
|
{
|
|
u32 State;
|
|
u32 Message;
|
|
u32 ObjectID; // not a pointer because it can refer to objects outside the current area
|
|
};
|
|
|
|
#endif // SCONNECTION_H
|