prime/include/MetroidPrime/CArchitectureQueue.hpp

22 lines
421 B
C++
Raw Normal View History

#ifndef _CARCHITECTUREQUEUE
#define _CARCHITECTUREQUEUE
2022-10-01 06:19:09 +00:00
#include "types.h"
#include "MetroidPrime/CArchitectureMessage.hpp"
#include "rstl/list.hpp"
class CArchitectureQueue {
public:
2022-10-24 01:44:54 +00:00
bool Push(const CArchitectureMessage& msg);
2022-10-11 15:30:39 +00:00
void Pop(); // TODO
void Clear(); // TODO
bool IsEmpty() const; // TODO
2022-10-01 06:19:09 +00:00
private:
rstl::list< CArchitectureMessage > x0_queue;
};
#endif // _CARCHITECTUREQUEUE