mirror of https://github.com/PrimeDecomp/prime.git
22 lines
421 B
C++
22 lines
421 B
C++
#ifndef _CARCHITECTUREQUEUE
|
|
#define _CARCHITECTUREQUEUE
|
|
|
|
#include "types.h"
|
|
|
|
#include "MetroidPrime/CArchitectureMessage.hpp"
|
|
|
|
#include "rstl/list.hpp"
|
|
|
|
class CArchitectureQueue {
|
|
public:
|
|
bool Push(const CArchitectureMessage& msg);
|
|
void Pop(); // TODO
|
|
void Clear(); // TODO
|
|
bool IsEmpty() const; // TODO
|
|
|
|
private:
|
|
rstl::list< CArchitectureMessage > x0_queue;
|
|
};
|
|
|
|
#endif // _CARCHITECTUREQUEUE
|