1 /**
  2  * Copyright (C) 2009-2012 Klaus Reimer <k@ailis.de>
  3  * See LICENSE.txt for licensing information
  4  * 
  5  * @require threedee.js
  6  */
  7 
  8 /**
  9  * Constructs a new light.
 10  * @constructor
 11  * @class
 12  * Base class for lights.
 13  */
 14 threedee.Light = function()
 15 {
 16     // Empty
 17 };
 18