Shooting Star

Outline

A small frontend framework for game development. This framework is supported on Windows and Linux.

Example

Here is an example that creates a window and clears it default color:

```rust use sstar::{ vulkan::, window::, };

fn main() { let mut windowapp = WindowApp::new("Sample Program\0", 640, 480); let vulkanapp = VulkanApp::new(&windowapp, 10); while windowapp.doevents() { vulkanapp.render(None, &[]).unwrap(); } vulkanapp.terminate(); windowapp.terminate(); } ```

Dependencies

Following dependencies are required:

License

This software (shooting-star) is published under the CC0 public domain. However, some dependencies may be linked when building an app using this software. See LICENSE-ALL in detail.