care-game 0.0.1

Simple and easy game framework inspired by LÖVE.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use care::graphics::Texture;

#[care::state]
static tex: Texture = Texture::new("examples/test.png");

#[care::init]
fn init(_args: Vec<String>) {}

#[care::draw]
fn draw() {
    care::graphics::texture(&tex, (50, 50));
}

care::main!();