15 lines
452 B
C#
15 lines
452 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace VGMToolbox.util
|
|
{
|
|
public class RiffCalculatingOffsetDescription : CalculatingOffsetDescription
|
|
{
|
|
public const string START_OF_STRING = "start of";
|
|
public const string END_OF_STRING = "end of";
|
|
|
|
public string RelativeLocationToRiffChunkString { set; get; }
|
|
public string RiffChunkString { set; get; }
|
|
}
|
|
}
|