Mercurial > hg > Members > kono > Cerium
view include/TaskManager/Random.h @ 347:ee3db22c03b9
error in SceneGraph.[cpp,h]
author | e065746@localhost.localdomain |
---|---|
date | Wed, 08 Jul 2009 15:04:03 +0900 |
parents | 2b114977852d |
children |
line wrap: on
line source
#ifndef INCLUDED_RANDOM #define INCLUDED_RANDOM class Random { public: Random(void); Random(unsigned int seed); void reset(void); int getData(void); }; typedef Random *RandomPtr; #endif