001 package com.croftsoft.core.sim; 002 003 /*********************************************************************** 004 * Provides elapsed time since last update in seconds. 005 * 006 * @version 007 * $Id: DeltaClock.java,v 1.2 2008/08/08 21:56:33 croft Exp $ 008 * @since 009 * 2008-07-06 010 * @author 011 * <a href="https://www.croftsoft.com/">David Wallace Croft</a> 012 ***********************************************************************/ 013 014 public interface DeltaClock 015 //////////////////////////////////////////////////////////////////////// 016 //////////////////////////////////////////////////////////////////////// 017 { 018 019 double getDeltaTime ( ); 020 021 //////////////////////////////////////////////////////////////////////// 022 //////////////////////////////////////////////////////////////////////// 023 }