allow XSE format to 'create new' data

This commit is contained in:
Benjamin Popp 2021-07-23 22:59:02 -05:00
parent ccc1d81a0e
commit 54ec62e8b1

View File

@ -124,7 +124,8 @@ namespace HavenSoft.HexManiac.Core.Models.Runs.Factory {
}
public override IFormattedRun WriteNewRun(IDataModel owner, ModelDelta token, int source, int destination, string name, IReadOnlyList<ArrayRunElementSegment> sourceSegments) {
throw new System.NotImplementedException();
token.ChangeData(owner, destination, 2);
return new XSERun(destination);
}
}