24 lines
474 B
C++
24 lines
474 B
C++
/*
|
|
-----------------------------------------------------------------------------
|
|
Class: ScreenCompany
|
|
|
|
Desc: Base class for all attraction screens.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "ScreenAttract.h"
|
|
|
|
|
|
class ScreenCompany : public ScreenAttract
|
|
{
|
|
public:
|
|
ScreenCompany() : ScreenAttract("Company","company") { };
|
|
|
|
};
|
|
|
|
|
|
|