Mercurial > hg > Game > Cerium
view include/TaskManager/Random.h @ 354:cfd20d609ace draft
add example/get_segment and change spe/DrawSpan.cpp
author | koba |
---|---|
date | Wed, 15 Jul 2009 17:39:51 +0900 |
parents | 56314060907f |
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