Mercurial > hg > Game > Cerium
view include/TaskManager/Random.h @ 357:6602b9ba4bfd draft
fix spe/DrawSpan.{cpp, h} spe/DrawSpanRenew.cpp
author | root@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 17 Jul 2009 17:13:17 +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