#include "stdafx.h" #include "cGameChar.h" cGameChar::cGameChar(Vec2 _pos) :position_(_pos) { } void cGameChar::Update() { //何もしない } void cGameChar::Draw() { //何もしない }