fix example

This commit is contained in:
Corwin Kuiper 2021-06-04 19:37:45 +01:00
parent 95407e11f6
commit 1c779e3c31

View file

@ -15,8 +15,8 @@ enum State {
Flapping,
}
struct Character {
object: ObjectStandard,
struct Character<'a> {
object: ObjectStandard<'a>,
position: Vector2D,
velocity: Vector2D,
}