blob: 8e5413d53fd488ff46af303735d05b74c68268e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* Project nGen
John DiCamillo
Copyright © 1997-2002. All Rights Reserved.
SUBSYSTEM: nGen.lib
FILE: Universe.h
AUTHOR: John DiCamillo
OVERVIEW
========
Abstract Universe class
*/
#ifndef Universe_h
#define Universe_h
#include "Types.h"
// +--------------------------------------------------------------------+
class Universe
{
public:
Universe() { }
virtual ~Universe() { }
virtual void ExecFrame(double seconds) { }
};
#endif Universe_h
|