1/*
2 * Copyright (c) 2011, ETH Zurich.
3 * All rights reserved.
4 *
5 * This file is distributed under the terms in the attached LICENSE file.
6 * If you do not find this file, copies can be found by writing to:
7 * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
8 */
9
10using System;
11using System.Collections.Generic;
12using System.Linq;
13using System.Text;
14using System.Windows;
15using System.Windows.Controls;
16using System.Windows.Data;
17using System.Windows.Documents;
18using System.Windows.Input;
19using System.Windows.Media;
20using System.Windows.Media.Imaging;
21using System.Windows.Shapes;
22
23namespace Aquarium
24{
25    /// <summary>
26    /// Interaction logic for Key.xaml
27    /// </summary>
28    public partial class Key : Window
29    {
30        public Key()
31        {
32            InitializeComponent();
33        }
34    }
35}
36