Mercurial > hg > Game > Cerium
view include/TaskManager/Random.h @ 292:2369f477ffbe draft
Document/Cerium_2009.mm
author | aaa |
---|---|
date | Fri, 05 Jun 2009 18:53:42 +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