Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/color.cc')
-rw-r--r--src/common/color.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/color.cc b/src/common/color.cc
index 85892c8..da43efc 100644
--- a/src/common/color.cc
+++ b/src/common/color.cc
@@ -1,15 +1,14 @@
/*
- ***************************************************************************
- * Copyright (C) 2002-2004 by Stijn Buys *
- * stijn.buys@pandora.be *
- * *
- * This software is redistributed under the terms of the *
- * GNU General Public License. Please read LICENSE.txt. *
- ***************************************************************************
+ common/color.cc
+ This file is part of the Osirion project and is distributed under
+ the terms of the GNU General Public License version 2
*/
+// project headers
#include "color.h"
+namespace common {
+
Color::Color() {
_r = _g = _b = 0.0f;
_a = 1.0f;
@@ -82,3 +81,4 @@ std::ostream &operator<<(std::ostream &os, const Color &c) {
return os;
}
+} // namespace common