소스 검색

CharacterID: Fixed copy paste error in comment

Jorrit Rouwe 6 달 전
부모
커밋
0609b5573f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Jolt/Physics/Character/CharacterID.h

+ 2 - 1
Jolt/Physics/Character/CharacterID.h

@@ -22,12 +22,13 @@ public:
 	{
 	}
 
-	/// Construct from index and sequence number combined in a single uint32 (use with care!)
+	/// Construct with specific value, make sure you don't use the same value twice!
 	explicit				CharacterID(uint32 inID) :
 		mID(inID)
 	{
 	}
 
+	/// Get the numeric value of the ID
 	inline uint32			GetValue() const
 	{
 		return mID;