view Renderer/Engine/Light.h @ 986:ac437c3cf766 akira

double buffering of spanpack/polgonpack not yet worked.
author root@henri.cr.ie.u-ryukyu.ac.jp
date Fri, 01 Oct 2010 03:42: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