repo.or.cz
/
mines3d.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Git repository for mines3d founded, mines3d v1.0 imported.
[mines3d.git]
/
ui
/
qt
/
ScoreRecord.h
blob
521cd677f03df92e21d3850a5679b2459b971501
1
/*
2
* File: ScoreRecord.h
3
* Created: 15.1.2010
4
* Author: Petr Kubizňák
5
* Purpose: Struct representing elementary data of a score table.
6
*/
7
8
9
#ifndef SCORERECORD_H_
10
#define SCORERECORD_H_
11
12
struct
ScoreRecord
{
13
char
name
[
50
];
14
int
time
;
15
};
16
17
#endif
/* SCORERECORD_H_ */