19 lines
384 B
C#
19 lines
384 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Remontor.Picter
|
|
{
|
|
internal class SPicManager
|
|
{
|
|
Dictionary<string, PicBase> PicList = new Dictionary<string, PicBase>();
|
|
public void PictureSet(PictureBox image, IComp comp)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|