SCCManager/Remontor/Picter/PicBaseWords.cs

29 lines
941 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Remontor.Picter
{
internal static class PicBaseWords
{
public static Image[] CollectImgMax= new Image[9] { global::Remontor.Properties.Resources._0words,
global::Remontor.Properties.Resources._1words,
global::Remontor.Properties.Resources._2words,
global::Remontor.Properties.Resources._3words,
global::Remontor.Properties.Resources._4words,
global::Remontor.Properties.Resources._5words,
global::Remontor.Properties.Resources._6words,
global::Remontor.Properties.Resources._7words,
global::Remontor.Properties.Resources._8words,
};
public static Image GetImageMax(int index)
{
return CollectImgMax[index];
}
}
}