File: Dice.h

package info (click to toggle)
residualvm 0.2.1%2Bdfsg-3
  • links: PTS, VCS
  • area: contrib
  • in suites: stretch
  • size: 23,344 kB
  • ctags: 27,386
  • sloc: cpp: 175,667; sh: 6,640; xml: 1,731; perl: 1,024; java: 839; asm: 738; python: 564; makefile: 145; sed: 11; php: 1
file content (12 lines) | stat: -rw-r--r-- 113 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __DICE_H
#define __DICE_H

class Dice
{
public:
    Dice();

    unsigned roll();
};

#endif // __DICE_H