summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorProgramerus <alcadeias95@gmail.com>2012-04-06 22:11:02 +0300
committerProgramerus <alcadeias95@gmail.com>2012-04-06 22:11:02 +0300
commit80cb8c399f79bac4dbd30fde5071a4667f20fdba (patch)
tree1d322d7a5444e8b211f7d0b56f719fa4d62f3d63
parent9c03ff837fea4dc856cef66dab2f160c3f74ddb0 (diff)
downloadcolobot-80cb8c399f79bac4dbd30fde5071a4667f20fdba.tar.gz
colobot-80cb8c399f79bac4dbd30fde5071a4667f20fdba.tar.bz2
colobot-80cb8c399f79bac4dbd30fde5071a4667f20fdba.zip
Comments translated from French to English.
-rw-r--r--src/planet.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/planet.h b/src/planet.h
index d8603a0..a05a702 100644
--- a/src/planet.h
+++ b/src/planet.h
@@ -12,7 +12,9 @@
// * GNU General Public License for more details.
// *
// * You should have received a copy of the GNU General Public License
-// * along with this program. If not, see http://www.gnu.org/licenses/.// planet.h
+// * along with this program. If not, see http://www.gnu.org/licenses/.
+
+// planet.h
#ifndef _PLANET_H_
#define _PLANET_H_
@@ -27,14 +29,14 @@ class CD3DEngine;
typedef struct
{
- char bUsed; // TRUE -> planète existe
- FPOINT start; // position initiale en degrés
- FPOINT angle; // position actuelle en degrés
+ char bUsed; // TRUE -> planet exists
+ FPOINT start; // initial position in degrees
+ FPOINT angle; // current position in degrees
float dim; // dimensions (0..1)
- float speed; // vitesse
- float dir; // direction dans le ciel
- char name[20]; // nom de la texture
- FPOINT uv1, uv2; // mapping de la texture
+ float speed; // speed
+ float dir; // direction in the sky
+ char name[20]; // name of the texture
+ FPOINT uv1, uv2; // texture mapping
char bTGA; // texture .TGA
}
Planet;