summaryrefslogtreecommitdiffstats
path: root/src/control/Pickups.h
blob: 3ae2764c29f46a1b375ecd1a2f49731525293809 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "config.h"
#include "Pickup.h"

class CPickups
{
public:
	static void RenderPickUpText(void);

	static CPickup(&aPickUps)[NUMPICKUPS];
};

class CPacManPickups
{
public:
	static void Render(void);
};