Kaba struct Move ed

...

Syntax ed

struct Move
    var frame: Frame[]
    var frames_per_sec_const: f32
    var frames_per_sec_factor: f32
    var name: string
    var type: i32

    # constructors
    func mut __init__()
    func mut __init__(type: i32, frame: Frame[], frames_per_sec_const: f32, frames_per_sec_factor: f32, name: string)

    # operators
    func mut __assign__(other: Move)     # Move = Move

    # nested classes
    class Frame
    class Type

Nested classes ed

Elements ed

var frame: Frame[]
...

var frames_per_sec_const: f32
...

var frames_per_sec_factor: f32
...

var name: string
...

var type: i32
...