Release 0.62

master
Kasi 2018-07-09 16:21:35 +01:00
parent 7345e21bce
commit 230d62a1f8
5 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,7 @@ namespace Internal
std::vector<std::int32_t> GetGlyphWidthOffsets() const; std::vector<std::int32_t> GetGlyphWidthOffsets() const;
std::vector<std::int32_t> GetGlyphWidths() const; std::vector<std::int32_t> GetGlyphWidths() const;
std::vector<std::vector<std::int8_t>> GetGlyphs() const; std::vector<std::vector<std::int8_t>> GetGlyphs() const;
std::int32_t GetHeightSpacing() const;
}; };
} }

View File

@ -185,6 +185,7 @@ namespace Internal
std::int32_t GetViewportScale(); std::int32_t GetViewportScale();
std::int32_t GetViewportWidth(); std::int32_t GetViewportWidth();
std::int32_t GetWeight(); std::int32_t GetWeight();
Cache GetWidgetFontCache();
HashTable GetWidgetNodeCache(); HashTable GetWidgetNodeCache();
std::int32_t GetWidgetRoot(); std::int32_t GetWidgetRoot();
std::vector<std::vector<Widget>> GetWidgets(); std::vector<std::vector<Widget>> GetWidgets();

View File

@ -32,6 +32,7 @@ class Paint
static void DrawModel(const std::vector<Point>& Model, std::uint8_t Red, std::uint8_t Green, std::uint8_t Blue, std::uint8_t Alpha); static void DrawModel(const std::vector<Point>& Model, std::uint8_t Red, std::uint8_t Green, std::uint8_t Blue, std::uint8_t Alpha);
static void DrawString(const std::string& String, const Point& P, std::uint8_t Red, std::uint8_t Green, std::uint8_t Blue, std::uint8_t Alpha); static void DrawString(const std::string& String, const Point& P, std::uint8_t Red, std::uint8_t Green, std::uint8_t Blue, std::uint8_t Alpha);
static void DrawPixels(const std::vector<Pixel> Pixels, std::uint32_t Width, std::uint32_t Height, const Point& P); static void DrawPixels(const std::vector<Pixel> Pixels, std::uint32_t Width, std::uint32_t Height, const Point& P);
static void SwapBuffer();
}; };
/** @} */ /** @} */

View File

@ -28,6 +28,7 @@ namespace Interactable
bool Exists() const; bool Exists() const;
static bool ItemsExist(const std::vector<Interactable::Item>& Items); static bool ItemsExist(const std::vector<Interactable::Item>& Items);
bool IsInterfaceOpen() const; bool IsInterfaceOpen() const;
bool OpenInterface() const;
std::int32_t GetID() const; std::int32_t GetID() const;
std::int32_t GetIndex() const; std::int32_t GetIndex() const;

Binary file not shown.