30 lines
574 B
C#
30 lines
574 B
C#
#region Usings
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
#endregion
|
|
|
|
#region Item Creation SDK
|
|
public partial class ItemCreationSDK : Form
|
|
{
|
|
#region Variables
|
|
public static readonly string ItemCreationTypesName = "SDKItemCreationTypes.xml";
|
|
#endregion
|
|
|
|
#region Constructor
|
|
public ItemCreationSDK()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
#endregion
|
|
|
|
#region Form Events
|
|
#endregion
|
|
}
|
|
#endregion
|