prime/include/MetroidPrime/CIOWinManager.hpp
Luke Street bed1bb88de Reorganize includes to match asm
Former-commit-id: 848752477e6833629bb0ce30125ca6f5dbffccd1
2022-07-18 18:42:58 -04:00

21 lines
287 B
C++

#ifndef _CIOWINMANAGER_HPP
#define _CIOWINMANAGER_HPP
#include "types.h"
#include "rstl/list.hpp"
class CIOWinManager {
public:
void Draw() const;
inline bool IsEmpty() const { return x4_ == 0 && x0_ == 0; }
private:
u32 x0_;
u32 x4_;
rstl::list< unkptr > x8_;
};
#endif