11 lines
115 B
C
11 lines
115 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
|
||
|
struct Event
|
||
|
{
|
||
|
public:
|
||
|
std::string name;
|
||
|
int argc;
|
||
|
void** argv;
|
||
|
|
||
|
};
|