Mercurial > hg > Members > kono > Cerium
view include/TaskManager/Random.h @ 351:852d7ba57be2
add move,collision task
author | admin@mcbk.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 10 Jul 2009 18:20:26 +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