mirror of
https://github.com/blueskythlikesclouds/SonicAudioTools.git
synced 2025-02-13 09:12:35 +01:00
49 lines
896 B
C#
49 lines
896 B
C#
using System.IO;
|
|
using SonicAudioLib.CriMw.Serialization;
|
|
|
|
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace CsbBuilder
|
|
{
|
|
[CriSerializable("AAX")]
|
|
[Serializable]
|
|
public class CriTableAax
|
|
{
|
|
public enum EnumLoopFlag : byte
|
|
{
|
|
Intro = 0,
|
|
Loop = 1,
|
|
};
|
|
|
|
private byte[] _data = new byte[0];
|
|
private EnumLoopFlag _lpflg = EnumLoopFlag.Intro;
|
|
|
|
[CriField("data", 0)]
|
|
public byte[] Data
|
|
{
|
|
get
|
|
{
|
|
return _data;
|
|
}
|
|
set
|
|
{
|
|
_data = value;
|
|
}
|
|
}
|
|
|
|
[CriField("lpflg", 1)]
|
|
public EnumLoopFlag LoopFlag
|
|
{
|
|
get
|
|
{
|
|
return _lpflg;
|
|
}
|
|
set
|
|
{
|
|
_lpflg = value;
|
|
}
|
|
}
|
|
}
|
|
}
|