File: constants.h

package info (click to toggle)
xgalaga%2B%2B 0.8.4-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 336 kB
  • ctags: 557
  • sloc: cpp: 2,715; makefile: 128
file content (16 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef CONSTANTS_H
#define CONSTANTS_H


// Aliens dimension
enum { g_alien_width = 19,
       g_aliens_hspacing = 22,
       g_alien_height = 20,
       g_aliens_vspacing = 24
};

// Vertical refresh rate
const int vfreq (50);


#endif