initial commit of media shit

This commit is contained in:
louis 2020-02-18 18:44:58 -05:00
commit 8c0a5e3aa7
38 changed files with 9195 additions and 0 deletions

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace VGMToolbox.util
{
public class ByteSearchCalculatingOffsetDescription : CalculatingOffsetDescription
{
public const string START_OF_STRING = "start of";
public const string END_OF_STRING = "end of";
public string RelativeLocationToByteString { set; get; }
public string ByteString { set; get; }
public bool TreatByteStringAsHex { set; get; }
}
}