aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/pheelicks/visualizer/FFTData.java
blob: 6ae55ebae310d39aca7831dd960cb86f2bf5300a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.pheelicks.visualizer;

// Data class to explicitly indicate that these bytes are the FFT of audio data
public class FFTData
{
  public FFTData(byte[] bytes)
  {
    this.bytes = bytes;
  }

  public byte[] bytes;
}