mirror of
https://github.com/UberGames/EF2GameSource.git
synced 2024-11-12 23:44:08 +00:00
34 lines
884 B
C
34 lines
884 B
C
|
//-----------------------------------------------------------------------------
|
||
|
//
|
||
|
// $Logfile:: /Code/DLLs/game/light.h $
|
||
|
// $Revision:: 3 $
|
||
|
// $Author:: Steven $
|
||
|
// $Date:: 10/13/03 8:54a $
|
||
|
//
|
||
|
// Copyright (C) 1997 by Ritual Entertainment, Inc.
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
// This source is may not be distributed and/or modified without
|
||
|
// expressly written permission by Ritual Entertainment, Inc.
|
||
|
//
|
||
|
//
|
||
|
// DESCRIPTION:
|
||
|
// Classes for creating and controlling lights.
|
||
|
//
|
||
|
|
||
|
#ifndef __LIGHT_H__
|
||
|
#define __LIGHT_H__
|
||
|
|
||
|
#include "g_local.h"
|
||
|
#include "entity.h"
|
||
|
|
||
|
class Light : public Entity
|
||
|
{
|
||
|
public:
|
||
|
CLASS_PROTOTYPE( Light );
|
||
|
|
||
|
Light();
|
||
|
};
|
||
|
|
||
|
#endif /* light.h */
|