github ppy/osu-framework 2021.721.0

latest releases: 2024.513.0, 2024.509.0, 2024.423.0...
2 years ago

Thanks for following along! This is a tagged release (2021.721.0).

Breaking Changes

PlatformAction type is changed to an enum type

If PlatformAction.ActionType was matched, change to a matching of PlatformAction itself like:

bool OnPressed(PlatformAction action) {
-    switch (action.ActionType)
+    switch (action)
    {
-        case PlatformActionType.Cut:
+        case PlatformAction.Cut:

Don't miss a new osu-framework release

NewReleases is sending notifications on new releases.