summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/Director.h
diff options
context:
space:
mode:
Diffstat (limited to 'nGenEx/Director.h')
-rw-r--r--nGenEx/Director.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/nGenEx/Director.h b/nGenEx/Director.h
index 7eda1b2..e9acb25 100644
--- a/nGenEx/Director.h
+++ b/nGenEx/Director.h
@@ -1,15 +1,15 @@
/* Project nGen
- John DiCamillo
- Copyright © 1997-2002. All Rights Reserved.
+ John DiCamillo
+ Copyright © 1997-2002. All Rights Reserved.
- SUBSYSTEM: nGen.lib
- FILE: Director.h
- AUTHOR: John DiCamillo
+ SUBSYSTEM: nGen.lib
+ FILE: Director.h
+ AUTHOR: John DiCamillo
- OVERVIEW
- ========
- Abstract Director (AI or Human Input) for Physical Objects
+ OVERVIEW
+ ========
+ Abstract Director (AI or Human Input) for Physical Objects
*/
#ifndef Director_h
@@ -27,15 +27,15 @@ class Physical;
class Director
{
public:
- Director() { }
- virtual ~Director() { }
+ Director() { }
+ virtual ~Director() { }
- // accessors:
- virtual int Type() const { return 0; }
- virtual int Subframe() const { return 0; }
+ // accessors:
+ virtual int Type() const { return 0; }
+ virtual int Subframe() const { return 0; }
- // operations
- virtual void ExecFrame(double factor) { }
+ // operations
+ virtual void ExecFrame(double factor) { }
};
// +--------------------------------------------------------------------+