You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
703 B
18 lines
703 B
// See https://aka.ms/new-console-template for more information
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using FabStarterDeckGen;
|
|
using Newtonsoft.Json;
|
|
|
|
string DATA_DIR = @"D:\Dev_P\FabCollectionTracker";
|
|
var ref_card_loader = new ReferenceCardLoader();
|
|
ref_card_loader.LoadSetCSV(DATA_DIR + @"\csvs\set.csv");
|
|
ref_card_loader.LoadCardCSV(DATA_DIR + @"\csvs\card.csv");
|
|
|
|
var collection_reader = new FABCollectionReader();
|
|
collection_reader.LoadCollection(DATA_DIR + @"\FabCollection-Generated.xlsx", ref_card_loader);
|
|
|
|
var deckGenerator = new DeckGenerator();
|
|
deckGenerator.LoadDeckConfigs(DATA_DIR + @"\DeckLists.json");
|
|
deckGenerator.DetermineMaxBuilds(collection_reader.CollectionCounts);
|