Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Tetris/App.xaml.cs

16 lines
318 B
C#
Raw Normal View History

2022-03-23 08:59:39 +01:00
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
2022-04-06 11:39:36 +02:00
namespace Tetris {
2022-03-23 08:59:39 +01:00
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
2022-04-06 11:39:36 +02:00
public partial class App : Application {
2022-03-23 08:59:39 +01:00
}
2022-04-06 11:39:36 +02:00
}