2018-12-31 01:00:38 +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.
|
2018-12-31 01:00:38 +00:00
|
|
|
*
|
|
|
|
****/
|
|
|
|
|
2019-01-03 01:26:39 +00:00
|
|
|
class trigger_transition
|
2018-12-31 01:00:38 +00:00
|
|
|
{
|
2019-01-03 01:26:39 +00:00
|
|
|
void() trigger_transition;
|
2018-12-31 01:00:38 +00:00
|
|
|
};
|
|
|
|
|
2019-01-03 01:26:39 +00:00
|
|
|
void trigger_transition :: trigger_transition ( void )
|
2018-12-31 01:00:38 +00:00
|
|
|
{
|
|
|
|
solid = SOLID_NOT;
|
|
|
|
movetype = MOVETYPE_NONE;
|
|
|
|
setmodel( this, model );
|
|
|
|
model = __NULL__;
|
|
|
|
modelindex = 0;
|
|
|
|
}
|
|
|
|
|
2019-01-03 01:26:39 +00:00
|
|
|
CLASSEXPORT( trigger_transition, trigger_transition )
|