mirror of
https://github.com/jstoddard/CWLibrary.git
synced 2026-01-12 19:40:00 +01:00
16 lines
286 B
C#
16 lines
286 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace CWLibrary
|
|
{
|
|
abstract class WaveChunk
|
|
{
|
|
public char[] ChunkId { get; set; }
|
|
public uint ChunkSize { get; set; }
|
|
|
|
public abstract byte[] ToBytes();
|
|
}
|
|
}
|