Skip to content

aizcutei/suki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Suki

suki

Crates.io Docs.rs License

Suki is a 2D game framework in Rust inspired by LÖVE2D.

⚠️ This project is still in early development.

Start

To create a new Suki project, the minimun code you need to write is:

use suki::Suki as _;

fn main() {
  MyGame::new().run();
}

struct MyGame;

#[suki::suki_app]
impl MyGame {
  pub fn new() -> Self {
    Self
  }

  fn update(&mut self, _dt: f32) {}

  fn draw(&self, _suki: &mut suki::Context<'_>) {}
}

About

Suki is a 2D game framework in Rust inspired by LÖVE2D.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors