mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
expose attributes publically
This commit is contained in:
parent
fbfdd360db
commit
4e10e231a7
|
@ -21,15 +21,15 @@ pub struct ObjectAffine {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct AffineMatrix {
|
pub struct AffineMatrix {
|
||||||
attributes: AffineMatrixAttributes,
|
pub attributes: AffineMatrixAttributes,
|
||||||
id: u8,
|
id: u8,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct AffineMatrixAttributes {
|
pub struct AffineMatrixAttributes {
|
||||||
p_a: i16,
|
pub p_a: i16,
|
||||||
p_b: i16,
|
pub p_b: i16,
|
||||||
p_c: i16,
|
pub p_c: i16,
|
||||||
p_d: i16,
|
pub p_d: i16,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub enum Mode {
|
pub enum Mode {
|
||||||
|
|
Loading…
Reference in a new issue