blob: 03bc415af3f88f4d8e71ce26c13ad9f30537b1ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/**
* @file llversionserver.h
* @brief
*
* Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLVERSIONSERVER_H
#define LL_LLVERSIONSERVER_H
const S32 LL_VERSION_MAJOR = 1;
const S32 LL_VERSION_MINOR = 18;
const S32 LL_VERSION_PATCH = 2;
const S32 LL_VERSION_BUILD = 46464;
const char * const LL_CHANNEL = "Second Life Server";
#endif
|