engine/ext/world/player/player.h
2018-05-07 00:00:00 -05:00

17 lines
321 B
C++

#pragma once
#include <uf/config.h>
#include <uf/ext/ext.h>
#include <uf/engine/entity/entity.h>
#include "../object/object.h"
#include "../craeture/craeture.h"
namespace ext {
class EXT_API Player : public ext::Craeture {
protected:
public:
void initialize();
void tick();
void render();
};
}