summaryrefslogtreecommitdiff
path: root/indra/newview/tests/llsky_stub.cpp
blob: 35f4944a950199705c4a330079230a4f9cc4bedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * @file llsky_stub.cpp
 * @brief  stub class to allow unit testing
 *
 * $LicenseInfo:firstyear=2009&license=viewergpl$
 * Copyright (c) 2009, Linden Research, Inc.
 * $/LicenseInfo$
 */

class LLSky
{
public:
	void setOverrideSun(BOOL override);
	void setSunDirection(const LLVector3 &sun_direction, const LLVector3 &sun_ang_velocity);
};

void LLSky::setOverrideSun(BOOL override) {}
void LLSky::setSunDirection(const LLVector3 &sun_direction, const LLVector3 &sun_ang_velocity) {}

LLSky gSky;