view Renderer/Engine/Light.h @ 1087:20f09564c586 draft

fix (not yet tested)
author root@localhost.localdomain
date Fri, 17 Dec 2010 18:34:29 +0900
parents 1bfa45a08fa7
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