mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-04-02 11:01:43 -04:00
14 lines
284 B
C++
14 lines
284 B
C++
#pragma once
|
|
#include "file.hpp"
|
|
#include "note.hpp"
|
|
#include "utils/SharedCV.hpp"
|
|
#include <list>
|
|
|
|
namespace orbis {
|
|
struct KQueue : orbis::File {
|
|
shared_cv cv;
|
|
kstring name;
|
|
kvector<KEvent> triggeredEvents;
|
|
std::list<KNote, kallocator<KNote>> notes;
|
|
};
|
|
} // namespace orbis
|