목록2024/07/16 (1)
개발하는 리프터 꽃게맨입니다.
void*를 이용한 지연처리 테스트
더보기#include #include using namespace std;class Player{public:Player(string name): mName(name){}string GetName() const{return mName;}private:string mName;};struct MyEvent{void (*eventFunction)(void*, void*);void* lParam;void* rParam;};class EventProcessor{public:EventProcessor() = default;~EventProcessor() = default;void Push(MyEvent eventStruct){mQueue.push(eventStruct);}void AllExecute(){while ..
잡담
2024. 7. 16. 00:43