source: other-projects/fft-ddr/summer-2014/trunk/FFDDR/WavFrame.cs@ 29750

Last change on this file since 29750 was 29735, checked in by cct9, 9 years ago

Initial set of files for the FFT-Dance-Dance-Revolution project

  • Property svn:executable set to *
File size: 640 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7
8namespace FFDDR
9{
10 class WavFrame
11 {
12 public int bufferSize;
13 public double songLength;
14 public bool beatExists;
15 public float[] bandPowers;
16
17
18
19 public WavFrame(double SongLength, int BufferSize, float[] BandPowers, bool BeatExists)
20 {
21 this.songLength = SongLength;
22 this.bufferSize = BufferSize;
23 this.bandPowers = BandPowers;
24 this.beatExists = BeatExists;
25 }
26
27
28
29 }
30}
Note: See TracBrowser for help on using the repository browser.