mirror of
https://github.com/halpz/re3.git
synced 2025-03-25 16:45:06 +00:00
19 lines
223 B
C++
19 lines
223 B
C++
#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);
|
|
};
|