From 184ca2e43098bcd209415f23d8cba26c7ac24679 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 25 Jul 2022 07:57:48 +0200 Subject: initial package open https://github.com/Ponup/php-sdl-ttf/pull/1 fix dependencies --- REFLECTION | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 REFLECTION (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..ca4a4f9 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,66 @@ +Extension [ extension #121 sdl_ttf version 0.2.0 ] { + + - Dependencies { + Dependency [ sdl (Required) ] + } + + - Functions { + Function [ function TTF_Init ] { + + - Parameters [0] { + } + - Return [ int ] + } + Function [ function TTF_Quit ] { + + - Parameters [0] { + } + - Return [ void ] + } + Function [ function TTF_OpenFont ] { + + - Parameters [2] { + Parameter #0 [ string $name ] + Parameter #1 [ int $size ] + } + - Return [ TTF_Font ] + } + Function [ function TTF_CloseFont ] { + + - Parameters [1] { + Parameter #0 [ TTF_Font $font ] + } + - Return [ int ] + } + Function [ function TTF_RenderText_Solid ] { + + - Parameters [3] { + Parameter #0 [ TTF_Font $font ] + Parameter #1 [ string $text ] + Parameter #2 [ SDL_Color $color ] + } + - Return [ SDL_Surface ] + } + } + + - Classes [1] { + Class [ final class TTF_Font ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + } +} + -- cgit