view src/com/aurellem/capture/PrintTimer.java @ 6:0634e72bad3e

don't need StdAudio since I'm now using builtin javax to write wav files
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 12:07:56 -0700
parents edaa7e7806e4
children
line wrap: on
line source
1 package com.aurellem.capture;
3 import com.jme3.system.NanoTimer;
5 public class PrintTimer extends NanoTimer{
7 public PrintTimer(){
8 super();
9 System.out.println("hi");}
12 public float getTimePerFrame() {
13 System.out.println("RLM: I'm a timer!");
14 return super.getTimePerFrame();
15 }
17 }