Lephisto/src/info_view.h
Allanis ec2479eb80 [Add] Ship info screen with more ship stats.
[Change] Made the ship angular velocity damping less... broken.
2017-11-12 22:10:26 +00:00

16 lines
241 B
C++

#pragma once
#include "libs.h"
#include "gui.h"
#include "view.h"
class InfoView : public View {
public:
InfoView(void);
void UpdateInfo(void);
virtual void Update(void);
virtual void Draw3D(void);
private:
Gui::Label* info1;
};