allegro 0.0.1

Allegro 5 core library Rust wrapper
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2014 by SiegeLord
//
// All rights reserved. Distributed under ZLib. For full terms see the file LICENSE.

#[allow(non_camel_case_types)]
pub type c_bool = u8;

pub trait Flag
{
	fn zero() -> Self;
}