20 lines
371 B
C#
20 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TechnologyAssembler.Core.Assets;
|
|
|
|
namespace HashCalculator.GUI
|
|
{
|
|
public class ModManifest
|
|
{
|
|
IReadOnlyCollection<AssetEntry> Entries;
|
|
|
|
public ModManifest()
|
|
{
|
|
var x = Manifest.Load("");
|
|
}
|
|
}
|
|
}
|