mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-04-12 20:30:05 +03:00
- Fixes remaining ProjectX issues and failing tests. - Relaxes dependencies on other libraries.
16 lines
637 B
C#
16 lines
637 B
C#
using Syroot.BinaryData;
|
|
|
|
namespace Syroot.Worms.Armageddon.ProjectX
|
|
{
|
|
public struct Sound
|
|
{
|
|
// ---- FIELDS -------------------------------------------------------------------------------------------------
|
|
|
|
[BinaryMember(Order = 1)] public ushort SoundIndex;
|
|
[BinaryMember(Order = 2, BooleanCoding = BooleanCoding.Word)] public bool RepeatSound;
|
|
[BinaryMember(Order = 3, BooleanCoding = BooleanCoding.Dword)] public bool UseExplosionSound;
|
|
[BinaryMember(Order = 4)] public int SoundBeforeExplosion;
|
|
[BinaryMember(Order = 5)] public int DelayBeforeExplosion;
|
|
}
|
|
}
|