16 lines
217 B
C++
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)();
|
|
}
|
|
|
|
|