So I want to create a list of functions that have no parameters and return void, how do I do this?
This is what I have so far:
var levels: [() -> ()] = [() -> ()]()
But this just gives me a "Expected ',' seperator" Error
Anyone know how to do this?