2dkg/2dgk_7/2dgk_7/KPlayerController.h
2021-12-06 19:50:38 +01:00

16 lines
217 B
C++

#pragma once
#include "KShape.h"
#include "KVector2d.h"
namespace KapitanGame {
class KPlayerController
{
private:
KVector2D Input;
KShape Shape;
};
typedef void (KPlayerController::* KPlayerCommand)();
}