Silk.NETS
Silk.NET3y ago
Aqua

SDL style event handling would be quite nice. i always thought glfw's event processing was terrible

SDL style event handling would be quite nice. i always thought glfw's event processing was terrible
i just like to do
SDL_Event event;
while (SDL_PollEvent(&event)) {
  switch (event.type) { .... }
}
Was this page helpful?