├── .gitignore ├── LICENSE.md ├── README.md ├── examples └── Test │ └── src │ └── Test.pas └── godot ├── internal └── GDNativeApi.pas └── types ├── GodotArray.pas ├── GodotObject.pas ├── GodotString.pas └── GodotVariant.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenediktMagnus/godot-object-pascal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenediktMagnus/godot-object-pascal/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenediktMagnus/godot-object-pascal/HEAD/README.md -------------------------------------------------------------------------------- /examples/Test/src/Test.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenediktMagnus/godot-object-pascal/HEAD/examples/Test/src/Test.pas -------------------------------------------------------------------------------- /godot/internal/GDNativeApi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenediktMagnus/godot-object-pascal/HEAD/godot/internal/GDNativeApi.pas -------------------------------------------------------------------------------- /godot/types/GodotArray.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenediktMagnus/godot-object-pascal/HEAD/godot/types/GodotArray.pas -------------------------------------------------------------------------------- /godot/types/GodotObject.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenediktMagnus/godot-object-pascal/HEAD/godot/types/GodotObject.pas -------------------------------------------------------------------------------- /godot/types/GodotString.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenediktMagnus/godot-object-pascal/HEAD/godot/types/GodotString.pas -------------------------------------------------------------------------------- /godot/types/GodotVariant.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenediktMagnus/godot-object-pascal/HEAD/godot/types/GodotVariant.pas --------------------------------------------------------------------------------