Skip to content

Commit

Permalink
Реализация динамической работы меню
Browse files Browse the repository at this point in the history
  • Loading branch information
OrnarasUS committed Jan 17, 2025
1 parent db8e423 commit d15b01e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Menu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
{
public abstract class Menu
{
public abstract string Title { get; }
public abstract string[] Names { get; }
public abstract Action[] Actions { get; }
public abstract string Title { get; protected set; }
public abstract string[] Names { get; protected set; }
public abstract Action[] Actions { get; protected set; }

public void Open()
{
Expand Down

0 comments on commit d15b01e

Please sign in to comment.