2019-01-05 01:02:12 +00:00
|
|
|
/***
|
|
|
|
*
|
2019-01-16 16:43:50 +00:00
|
|
|
* Copyright (c) 2016-2019 Marco 'eukara' Hladik. All rights reserved.
|
|
|
|
*
|
|
|
|
* See the file LICENSE attached with the sources for usage details.
|
2019-01-05 01:02:12 +00:00
|
|
|
*
|
|
|
|
****/
|
|
|
|
|
|
|
|
/* https://twhl.info/wiki/page/cycler_sprite_(Half-Life) */
|
|
|
|
|
2019-01-05 10:50:02 +00:00
|
|
|
class cycler_sprite:CBaseTrigger
|
2019-01-05 01:02:12 +00:00
|
|
|
{
|
|
|
|
void() cycler_sprite;
|
|
|
|
};
|
|
|
|
|
|
|
|
void cycler_sprite::cycler_sprite(void)
|
|
|
|
{
|
|
|
|
CBaseEntity::CBaseEntity();
|
|
|
|
precache_model(m_oldModel);
|
|
|
|
Respawn();
|
|
|
|
}
|