PotatoPlan/Game1/Sources/ML-Joel/ImageData.cs

17 lines
338 B
C#
Raw Normal View History

2020-05-23 14:13:31 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public class ImageData
{
public ImageData(string imagePath, string label)
{
ImagePath = imagePath;
Label = label;
}
public readonly string ImagePath;
public readonly string Label;
}