summaryrefslogtreecommitdiff
path: root/common/piece.h
diff options
context:
space:
mode:
authorleo2000-08-22 14:14:07 +0000
committerleo2000-08-22 14:14:07 +0000
commita6a43f1b95bd33990a21fd1a52bff8c4a129d4e9 (patch)
tree844bcfb4fcc7812d53828cffd4acff76747f5341 /common/piece.h
parent4cb437c64ef4438f381fe95015c8155b789ff4b7 (diff)
Several changes, see docs/CHANGES.txt for a complete list
git-svn-id: http://svn.leocad.org/trunk@103 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'common/piece.h')
-rw-r--r--common/piece.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/piece.h b/common/piece.h
index 849ec23..cafa5ec 100644
--- a/common/piece.h
+++ b/common/piece.h
@@ -21,12 +21,12 @@ class PieceInfo;
typedef enum { PK_POSITION, PK_ROTATION } PK_TYPES;
-typedef struct PIECE_KEY {
+typedef struct LC_PIECE_KEY {
unsigned short time;
float param[4];
unsigned char type;
- PIECE_KEY* next;
-} PIECE_KEY;
+ LC_PIECE_KEY* next;
+} LC_PIECE_KEY;
class Piece : public Object
{
@@ -159,8 +159,8 @@ protected:
void BuildDrawInfo();
// Position
- PIECE_KEY* m_pAnimationKeys;
- PIECE_KEY* m_pInstructionKeys;
+ LC_PIECE_KEY* m_pAnimationKeys;
+ LC_PIECE_KEY* m_pInstructionKeys;
// Atributes
PieceInfo* m_pPieceInfo;