summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/Director.h
diff options
context:
space:
mode:
authorFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-09 20:15:42 +0000
committerFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-09 20:15:42 +0000
commitb2805409566af00bc15639494f5a186fbd2f16e6 (patch)
tree78f87818bd262e59929d77b53f068f9120f9620f /nGenEx/Director.h
parentfb436f697f21dfdf2d8fc8293bab82b998a353d1 (diff)
downloadstarshatter-b2805409566af00bc15639494f5a186fbd2f16e6.zip
starshatter-b2805409566af00bc15639494f5a186fbd2f16e6.tar.gz
starshatter-b2805409566af00bc15639494f5a186fbd2f16e6.tar.bz2
More indenting changes
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) { }
};
// +--------------------------------------------------------------------+