blob: a410a877c6990e1e4dea7f53ec24ed4cab04c575 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
//=============================================================================
// Copyright (C) 2002 Radical Entertainment Ltd. All rights reserved.
//
// File: carstartlocator.h
//
// Description: Blahblahblah
//
// History: 19/06/2002 + Created -- Cary Brisebois
//
//=============================================================================
#ifndef CARSTARTLOCATOR_H
#define CARSTARTLOCATOR_H
//========================================
// Nested Includes
//========================================
#include <meta/locator.h>
#include <meta/locatortypes.h>
//========================================
// Forward References
//========================================
//=============================================================================
//
// Synopsis: Blahblahblah
//
//=============================================================================
class CarStartLocator : public Locator
{
public:
CarStartLocator();
virtual ~CarStartLocator();
virtual LocatorType::Type GetDataType() const;
float GetRotation() const;
void SetRotation( float rot );
private:
float mYRotation;
//Prevent wasteful constructor creation.
CarStartLocator( const CarStartLocator& carstartlocator );
CarStartLocator& operator=( const CarStartLocator& carstartlocator );
};
//******************************************************************************
//
// Inline Public Member Functions
//
//******************************************************************************
//=============================================================================
// CarStartLocator::GetDataType
//=============================================================================
// Description: Comment
//
// Parameters: ()
//
// Return: inline
//
//=============================================================================
inline LocatorType::Type CarStartLocator::GetDataType() const
{
return( LocatorType::CAR_START );
}
//=============================================================================
// CarStartLocator::GetRotation
//=============================================================================
// Description: Comment
//
// Parameters: ()
//
// Return: float
//
//=============================================================================
inline float CarStartLocator::GetRotation() const
{
return mYRotation;
}
//=============================================================================
// CarStartLocator::SetRotation
//=============================================================================
// Description: Comment
//
// Parameters: ( float rot )
//
// Return: void
//
//=============================================================================
inline void CarStartLocator::SetRotation( float rot )
{
mYRotation = rot;
}
#endif //CARSTARTLOCATOR_H
|