16 lines
288 B
C++
16 lines
288 B
C++
/*+=====================================================================
|
|
File: Player.h
|
|
|
|
Summary: Header file for the Player class
|
|
|
|
========================================================================+*/
|
|
|
|
#pragma once
|
|
|
|
namespace Game {
|
|
class Player {
|
|
public:
|
|
void jump();
|
|
};
|
|
}
|