view Renderer/Engine/Light.h @ 818:19c6cdeb23d6

too few template-parameter-lists
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 23 May 2010 10:55:25 +0900
parents 5c5cd31b9d43
children
line wrap: on
line source

#ifndef INCLUDED_LIGHT
#define INCLUDED_LIGHT
#include "SceneGraph.h"

class Light : public SceneGraph {
public:
  Light(float w, float h);
  ~Light(void);
};

typedef Light *LightPtr;

#endif