12 lines
179 B
C#
12 lines
179 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
|
||
|
|
namespace TournamentOrganizer.Views;
|
||
|
|
|
||
|
|
public partial class GamesView : UserControl
|
||
|
|
{
|
||
|
|
public GamesView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|