package codes.som.hibiscus.features import codes.som.hibiscus.api.feature.Feature import codes.som.hibiscus.features.movement.Flight import codes.som.hibiscus.features.movement.Speed import codes.som.hibiscus.features.overlay.FeatureListOverlay import codes.som.hibiscus.features.player.NoFallDamage val ALL_FEATURES: Array<() -> Feature> = arrayOf( ::NoFallDamage, ::Flight, ::FeatureListOverlay, ::Speed, )