19 lines
275 B
C++
19 lines
275 B
C++
|
/***
|
||
|
*
|
||
|
* Copyright (c) 2016-2019 Marco 'eukara' Hladik. All rights reserved.
|
||
|
*
|
||
|
* See the file LICENSE attached with the sources for usage details.
|
||
|
*
|
||
|
****/
|
||
|
|
||
|
class CEnvBeam {
|
||
|
void() CEnvBeam;
|
||
|
};
|
||
|
|
||
|
void CEnvBeam :: CEnvBeam ( void )
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
CLASSEXPORT( env_beam, CEnvBeam )
|