2
0
mirror of https://github.com/rehlds/metamod-r.git synced 2025-01-15 08:07:58 +03:00

29 lines
691 B
C
Raw Normal View History

2016-07-04 13:11:20 +06:00
/***
*
* Copyright (c) 2009, Valve LLC. All rights reserved.
*
* This product contains software technology licensed from Id
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
* All Rights Reserved.
*
* Use, distribution, and modification of this source code and/or resulting
* object code is restricted to non-commercial enhancements to products from
* Valve LLC. All other use, distribution, or modification is prohibited
* without written permission from Valve LLC.
*
****/
#ifndef ENUMS_H
#define ENUMS_H
2017-07-31 20:56:51 +07:00
// Used as array indexer
2016-07-04 13:11:20 +06:00
typedef enum netsrc_s
2016-07-26 07:22:47 +07:00
{
2017-07-31 20:56:51 +07:00
NS_CLIENT = 0,
2016-07-26 07:22:47 +07:00
NS_SERVER,
2017-07-31 20:56:51 +07:00
NS_MULTICAST, // xxxMO
NS_MAX
2016-07-26 07:22:47 +07:00
} netsrc_t;
2016-07-04 13:11:20 +06:00
#endif