1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 15:27:24 +08:00

Make struct readonly

This commit is contained in:
Bartłomiej Dach 2024-09-04 12:41:02 +02:00
parent 130802e480
commit 6f99d839b0
No known key found for this signature in database

View File

@ -11,7 +11,7 @@ using osu.Game.Input.Bindings;
namespace osu.Game.Graphics.UserInterface
{
public struct Hotkey
public readonly struct Hotkey
{
public KeyCombination[]? KeyCombinations { get; init; }
public GlobalAction? GlobalAction { get; init; }