1
0
mirror of https://github.com/jummy0/sb2-decomp synced 2025-03-15 04:24:48 +01:00

removed action.h and fifo.h

these are unused/not present in speedy blupi
This commit is contained in:
jummy 2024-05-17 16:07:41 -05:00
parent 13aeb2b755
commit 3aa2558178
2 changed files with 0 additions and 49 deletions

View File

@ -1,16 +0,0 @@
extern
BOOL Action(short action, short direct,
short &phase, short &step,
short &channel, short &icon, POINT &pos, short &posZ,
short &sound);
extern
BOOL Rotate (short &icon, short direct);
extern
int GetIconDirect(short icon);
extern
int GetAmplitude(short action);

33
fifo.h
View File

@ -1,33 +0,0 @@
#pragma once
typedef struct
{
long pos;
long dist;
}
Element;
class CPileTriee
{
private:
long m_taille;
long m_max;
long m_out;
Element* m_data;
public:
CPileTriee(long taille);
~CPileLTriee();
void put(long pos, long dist);
long get();
};