summaryrefslogtreecommitdiff
path: root/src/SSystem/SComponent/c_m3d_g_cir.cpp
blob: 56ca47afa31e6ef4d849454ef89ce11e98d65b9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * c_m3d_g_cir.cpp
 *
 */

#include "SSystem/SComponent/c_m3d_g_cir.h"

cM3dGCir::cM3dGCir() {}

cM3dGCir::~cM3dGCir() {}

void cM3dGCir::Set(f32 pos_x, f32 pos_y, f32 pos_z, f32 radius) {
    cM2dGCir::Set(pos_x, pos_y, radius);
    mPosZ = pos_z;
}