Konstantin Koch 8287c54432 Included the Visual Studio extension and made the necessary changes to make it run.
Replaced the old VS templates with ones that offer more flexiblity.
Started replacing the Content Project for the samples with our custom project type.
Inlcuded a basic not yet working AssimpImporter.
2015-04-08 14:50:03 +02:00

43 lines
879 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ANX.Framework.Content.Pipeline.Tasks
{
public class CompiledBuildItem
{
public object Item
{
get;
private set;
}
public BuildItem OriginalBuildItem
{
get;
private set;
}
public string OutputFile
{
get;
private set;
}
public bool Successfull
{
get;
private set;
}
public CompiledBuildItem(object item, BuildItem originalBuildItem, string outputFile, bool successfull)
{
this.Item = item;
this.OriginalBuildItem = originalBuildItem;
this.OutputFile = outputFile;
this.Successfull = successfull;
}
}
}