From 69209c38968c6f4066a772e0a51a2928749217de Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Fri, 9 Dec 2011 19:00:23 +0000 Subject: Re-indenting the code to use standard tabs. Yes, I know this is pretty pointless, but who cares? --- Stars45/FlightComp.h | 56 ++++++++++++++++++++++++++-------------------------- 1 file changed, 28 insertions(+), 28 deletions(-) (limited to 'Stars45/FlightComp.h') diff --git a/Stars45/FlightComp.h b/Stars45/FlightComp.h index 8696cd0..504e76c 100644 --- a/Stars45/FlightComp.h +++ b/Stars45/FlightComp.h @@ -1,15 +1,15 @@ /* Project STARSHATTER - John DiCamillo - Copyright © 1997-2002. All Rights Reserved. + John DiCamillo + Copyright © 1997-2002. All Rights Reserved. - SUBSYSTEM: Stars.exe - FILE: FlightComp.h - AUTHOR: John DiCamillo + SUBSYSTEM: Stars.exe + FILE: FlightComp.h + AUTHOR: John DiCamillo - OVERVIEW - ======== - Flight Computer systems class + OVERVIEW + ======== + Flight Computer systems class */ #ifndef FLIGHT_COMP_H @@ -28,35 +28,35 @@ class Ship; class FlightComp : public Computer { public: - enum CompType { AVIONICS=1, FLIGHT, TACTICAL }; + enum CompType { AVIONICS=1, FLIGHT, TACTICAL }; - FlightComp(int comp_type, const char* comp_name); - FlightComp(const Computer& rhs); - virtual ~FlightComp(); + FlightComp(int comp_type, const char* comp_name); + FlightComp(const Computer& rhs); + virtual ~FlightComp(); - virtual void ExecSubFrame(); + virtual void ExecSubFrame(); - int Mode() const { return mode; } - double Throttle() const { return throttle; } + int Mode() const { return mode; } + double Throttle() const { return throttle; } - void SetMode(int m) { mode = m; } - void SetVelocityLimit(double v) { vlimit = (float) v; } - void SetTransLimit(double x, double y, double z); + void SetMode(int m) { mode = m; } + void SetVelocityLimit(double v) { vlimit = (float) v; } + void SetTransLimit(double x, double y, double z); - void FullStop() { halt = true; } + void FullStop() { halt = true; } protected: - virtual void ExecTrans(); - virtual void ExecThrottle(); + virtual void ExecTrans(); + virtual void ExecThrottle(); - int mode; - int halt; - float throttle; + int mode; + int halt; + float throttle; - float vlimit; - float trans_x_limit; - float trans_y_limit; - float trans_z_limit; + float vlimit; + float trans_x_limit; + float trans_y_limit; + float trans_z_limit; }; #endif FLIGHT_COMP_H -- cgit v1.1