diff options
author | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
commit | 420b91db29485df39fd6e724e782c449158811cb (patch) | |
tree | b471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/llvoground.h |
Print done when done.
Diffstat (limited to 'indra/newview/llvoground.h')
-rw-r--r-- | indra/newview/llvoground.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/indra/newview/llvoground.h b/indra/newview/llvoground.h new file mode 100644 index 0000000000..228d872eaf --- /dev/null +++ b/indra/newview/llvoground.h @@ -0,0 +1,36 @@ +/** + * @file llvoground.h + * @brief LLVOGround class header file + * + * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#ifndef LL_LLVOGROUND_H +#define LL_LLVOGROUND_H + +#include "stdtypes.h" +#include "v3color.h" +#include "v4coloru.h" +#include "llviewerimage.h" +#include "llviewerobject.h" + +class LLVOGround : public LLViewerObject +{ +protected: +public: + LLVOGround(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); + virtual ~LLVOGround(); + + /*virtual*/ BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time); + + // Graphical stuff for objects - maybe broken out into render class + // later? + /*virtual*/ void updateTextures(LLAgent &agent); + /*virtual*/ LLDrawable* createDrawable(LLPipeline *pipeline); + /*virtual*/ BOOL updateGeometry(LLDrawable *drawable); + + void cleanupGL(); +}; + +#endif // LL_LLVOGROUND_H |