mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 01:15:36 -04:00
21 lines
402 B
C#
21 lines
402 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using LibEveryFileExplorer.GameData;
|
|
|
|
namespace LibEveryFileExplorer.UI
|
|
{
|
|
public partial class GameDataSectionViewerBase : UserControl
|
|
{
|
|
public GameDataSectionViewerBase()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|