Skip to content

sfonch/vulnex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vulnex

Getting Started

To run your game, you need an App instance.

Create one like this:

App::new()

Window Title

You can set the window title using .title():

App::new()
    .title("My Cool Game".to_string())

Running

Call .run() with two closures — one for initialization, one for the game loop:

App::new()
    .run(|app| {
        // Called once at startup
    }, |app| {
        // Called every frame
    });

About

Rust crate for making games

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages