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 info_null
|
2018-12-31 01:00:38 +00:00
|
|
|
{
|
2019-01-03 01:26:39 +00:00
|
|
|
void() info_null;
|
2018-12-31 01:00:38 +00:00
|
|
|
};
|
|
|
|
|
2019-03-19 19:01:24 +00:00
|
|
|
void info_null::info_null(void)
|
2018-12-31 01:00:38 +00:00
|
|
|
{
|
|
|
|
remove( self );
|
|
|
|
}
|
|
|
|
|
2019-01-16 04:18:24 +00:00
|
|
|
class info_notnull:CBaseTrigger
|
2018-12-31 01:00:38 +00:00
|
|
|
{
|
2019-01-03 01:26:39 +00:00
|
|
|
void() info_notnull;
|
2018-12-31 01:00:38 +00:00
|
|
|
};
|
|
|
|
|
2019-03-19 19:01:24 +00:00
|
|
|
void info_notnull::info_notnull(void)
|
2018-12-31 01:00:38 +00:00
|
|
|
{
|
2019-01-16 04:18:24 +00:00
|
|
|
CBaseTrigger::CBaseTrigger();
|
2018-12-31 01:00:38 +00:00
|
|
|
}
|
|
|
|
|
2019-03-19 19:01:24 +00:00
|
|
|
CLASSEXPORT(info_node, info_notnull)
|
|
|
|
CLASSEXPORT(info_target, info_notnull)
|
|
|
|
CLASSEXPORT(env_sound, info_null)
|