-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOBBColliderComponent.h
More file actions
31 lines (28 loc) · 1.32 KB
/
OBBColliderComponent.h
File metadata and controls
31 lines (28 loc) · 1.32 KB
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
//--------------------------------------------------------------------------------
// OBBColliderコンポネント
// OBBColliderComponent.h
// Author : Xu Wenjie
// Date : 2017-07-28
//--------------------------------------------------------------------------------
#pragma once
//--------------------------------------------------------------------------------
// インクルードファイル
//--------------------------------------------------------------------------------
#include "boxColliderComponent.h"
//--------------------------------------------------------------------------------
// クラス宣言
//--------------------------------------------------------------------------------
//--------------------------------------------------------------------------------
// OBBColliderポネントクラス
//--------------------------------------------------------------------------------
class COBBColliderComponent : public CBoxColliderComponent
{
public:
//--------------------------------------------------------------------------------
// 関数定義
//--------------------------------------------------------------------------------
COBBColliderComponent(CGameObject* const pGameObj, const CS::COL_MODE& mode, const CKFVec3& vHalfSize)
: CBoxColliderComponent(pGameObj, CS::COL_OBB, mode, vHalfSize) {}
~COBBColliderComponent() {}
private:
};