16 lines
330 B
C#
16 lines
330 B
C#
using System.Windows.Controls;
|
|
|
|
namespace Torch.Server.Views.Entities
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for EntityControlsView.xaml
|
|
/// </summary>
|
|
public partial class EntityControlsView : ItemsControl
|
|
{
|
|
public EntityControlsView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|