mirror of https://github.com/PrimeDecomp/prime.git
25 lines
536 B
C++
25 lines
536 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) {
|
|
x0_queue.push_back(msg);
|
|
return false; // TODO
|
|
}
|
|
void Pop(); // TODO
|
|
void Clear(); // TODO
|
|
bool IsEmpty() const; // TODO
|
|
|
|
private:
|
|
rstl::list< CArchitectureMessage > x0_queue;
|
|
};
|
|
|
|
#endif // _CARCHITECTUREQUEUE
|