github ppy/osu-framework 2021.721.0

latest releases: 2024.528.1, 2024.528.0, 2024.523.0...
3 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.