16 lines
337 B
C#
16 lines
337 B
C#
using Avalonia.Controls;
|
|
|
|
namespace Snake.Avalonia.Views;
|
|
|
|
/// <summary>
|
|
/// Placeholder for the Avalonia game view.
|
|
/// Wire up <see cref="Snake.Core.SnakeGame"/> here for rendering and input.
|
|
/// </summary>
|
|
public partial class GameView : UserControl
|
|
{
|
|
public GameView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|