diff options
author | Holger Zickner <[email protected]> | 2004-07-08 20:56:55 +0000 |
---|---|---|
committer | Holger Zickner <[email protected]> | 2004-07-08 20:56:55 +0000 |
commit | 6b36f9e0380b7c80aecdc78ef07a0cf473712416 (patch) | |
tree | 4a378b960321b3b7b07ef2effac295d0dd589eab /src/jake2/sound/wavinfo_t.java | |
parent | 252832999fa43bce63ca4b643fab5d9dd51fccc4 (diff) |
import of Jake2 version v_0_9
Diffstat (limited to 'src/jake2/sound/wavinfo_t.java')
-rw-r--r-- | src/jake2/sound/wavinfo_t.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/jake2/sound/wavinfo_t.java b/src/jake2/sound/wavinfo_t.java new file mode 100644 index 0000000..76a28fc --- /dev/null +++ b/src/jake2/sound/wavinfo_t.java @@ -0,0 +1,19 @@ +/* + * wavinfo_t.java + * Copyright (C) 2004 + * + * $Id: wavinfo_t.java,v 1.1 2004-07-08 20:56:49 hzi Exp $ + */ +package jake2.sound; + +/** + * wavinfo_t + */ +public class wavinfo_t { + public int rate; + public int width; + public int channels; + public int loopstart; + public int samples; + public int dataofs; // chunk starts this many bytes from file start +} |