summaryrefslogtreecommitdiffstats
path: root/rules/mmpong.in
blob: 32d0bb1d87379665cde28f2d9721d2509acea758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
## SECTION=games

menuconfig MMPONG
	tristate
	select HOST_CMAKE
	select LIBCACA	if MMPONG_CACA
	prompt "mmpong                        "
	help
	  mmpong is an ATARI-pong-like multiplayer game, where a
	  moving ball reflects on impact from paddles on the left and
	  right sides of the screen.  A special feature of this
	  variant is the ability to play the game with far more than
	  two players. Players are split into two teams, and the
	  position of each team's paddle is determined by the mean
	  value of the positions of all the players' paddles on the
	  team. mmpong supports a number of different paddle profiles
	  (like flat or round).

if MMPONG

config MMPONG_CACA
	bool "libcaca interface"

config MMPONG_SERVER
	bool "install mmpong server"

endif