Nazaj na multithreadanje - fonti
This commit is contained in:
16
include/game/agame/player.hpp
Normal file
16
include/game/agame/player.hpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
#include <object/entity.hpp>
|
||||
#include <renderer/texture.hpp>
|
||||
#include <renderer/font.hpp>
|
||||
|
||||
namespace Game::AGame {
|
||||
class Player : public Object::Entity {
|
||||
using Object::Entity::Entity;
|
||||
|
||||
public:
|
||||
~Player() override = default;
|
||||
void start() override;
|
||||
void update() override;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user