├── .gitignore ├── BeefProj.toml ├── LICENSE.md ├── README.md ├── img ├── add-deps.png ├── build-settings.png ├── from-installed.png ├── raylib-beef-logo.png ├── screen.png └── static-linking.png └── src ├── Easings.bf ├── Enums ├── AndroidButton.bf ├── BlendMode.bf ├── CameraMode.bf ├── CameraType.bf ├── ConfigFlag.bf ├── CubemapLayoutType.bf ├── FontType.bf ├── GamepadAxis.bf ├── GamepadButton.bf ├── GamepadNumber.bf ├── GestureType.bf ├── KeyboardKey.bf ├── MaterialMapType.bf ├── MouseButton.bf ├── MouseCursor.bf ├── NPatchType.bf ├── PhysicsShapeType.bf ├── PixelFormat.bf ├── ShaderLocationIndex.bf ├── ShaderUniformDataType.bf ├── TextureFilter.bf ├── TextureWrap.bf └── TraceLogType.bf ├── Math └── Utils.bf ├── Raylib.bf ├── Raylib ├── Audio.bf ├── Core │ ├── Callbacks.bf │ ├── Camera.bf │ ├── Cursor.bf │ ├── Drawing.bf │ ├── FileManagement.bf │ ├── Gestures.bf │ ├── Input.bf │ ├── Misc.bf │ ├── PersistentStorage.bf │ ├── ScreenSpace.bf │ ├── ShaderManagement.bf │ ├── Timing.bf │ ├── VRCfg.bf │ └── Windowing.bf ├── Models.bf ├── Shapes.bf ├── Text.bf └── Textures.bf ├── Types ├── AudioStream.bf ├── BoneInfo.bf ├── BoundingBox.bf ├── Camera2D.bf ├── Camera3D.bf ├── CharInfo.bf ├── Color.bf ├── Font.bf ├── Image.bf ├── Material.bf ├── MaterialMap.bf ├── Matrix.bf ├── Matrix2x2.bf ├── Mesh.bf ├── Model.bf ├── ModelAnimation.bf ├── Music.bf ├── NPatchInfo.bf ├── Private │ └── rAudioBuffer.bf ├── Quaternion.bf ├── Ray.bf ├── RayHitInfo.bf ├── Rectangle.bf ├── RenderTexture2D.bf ├── Shader.bf ├── Sound.bf ├── Texture.bf ├── Transform.bf ├── Vector2.bf ├── Vector3.bf ├── Vector4.bf ├── VrDeviceInfo.bf ├── VrStereoConfig.bf ├── Wave.bf ├── float16.bf └── float3.bf └── rlgl.bf /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | BeefSpace_User.toml 3 | dist 4 | *.zip 5 | -------------------------------------------------------------------------------- /BeefProj.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/BeefProj.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/README.md -------------------------------------------------------------------------------- /img/add-deps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/img/add-deps.png -------------------------------------------------------------------------------- /img/build-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/img/build-settings.png -------------------------------------------------------------------------------- /img/from-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/img/from-installed.png -------------------------------------------------------------------------------- /img/raylib-beef-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/img/raylib-beef-logo.png -------------------------------------------------------------------------------- /img/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/img/screen.png -------------------------------------------------------------------------------- /img/static-linking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/img/static-linking.png -------------------------------------------------------------------------------- /src/Easings.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Easings.bf -------------------------------------------------------------------------------- /src/Enums/AndroidButton.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/AndroidButton.bf -------------------------------------------------------------------------------- /src/Enums/BlendMode.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/BlendMode.bf -------------------------------------------------------------------------------- /src/Enums/CameraMode.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/CameraMode.bf -------------------------------------------------------------------------------- /src/Enums/CameraType.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/CameraType.bf -------------------------------------------------------------------------------- /src/Enums/ConfigFlag.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/ConfigFlag.bf -------------------------------------------------------------------------------- /src/Enums/CubemapLayoutType.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/CubemapLayoutType.bf -------------------------------------------------------------------------------- /src/Enums/FontType.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/FontType.bf -------------------------------------------------------------------------------- /src/Enums/GamepadAxis.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/GamepadAxis.bf -------------------------------------------------------------------------------- /src/Enums/GamepadButton.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/GamepadButton.bf -------------------------------------------------------------------------------- /src/Enums/GamepadNumber.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/GamepadNumber.bf -------------------------------------------------------------------------------- /src/Enums/GestureType.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/GestureType.bf -------------------------------------------------------------------------------- /src/Enums/KeyboardKey.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/KeyboardKey.bf -------------------------------------------------------------------------------- /src/Enums/MaterialMapType.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/MaterialMapType.bf -------------------------------------------------------------------------------- /src/Enums/MouseButton.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/MouseButton.bf -------------------------------------------------------------------------------- /src/Enums/MouseCursor.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/MouseCursor.bf -------------------------------------------------------------------------------- /src/Enums/NPatchType.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/NPatchType.bf -------------------------------------------------------------------------------- /src/Enums/PhysicsShapeType.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/PhysicsShapeType.bf -------------------------------------------------------------------------------- /src/Enums/PixelFormat.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/PixelFormat.bf -------------------------------------------------------------------------------- /src/Enums/ShaderLocationIndex.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/ShaderLocationIndex.bf -------------------------------------------------------------------------------- /src/Enums/ShaderUniformDataType.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/ShaderUniformDataType.bf -------------------------------------------------------------------------------- /src/Enums/TextureFilter.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/TextureFilter.bf -------------------------------------------------------------------------------- /src/Enums/TextureWrap.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/TextureWrap.bf -------------------------------------------------------------------------------- /src/Enums/TraceLogType.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Enums/TraceLogType.bf -------------------------------------------------------------------------------- /src/Math/Utils.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Math/Utils.bf -------------------------------------------------------------------------------- /src/Raylib.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib.bf -------------------------------------------------------------------------------- /src/Raylib/Audio.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Audio.bf -------------------------------------------------------------------------------- /src/Raylib/Core/Callbacks.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/Callbacks.bf -------------------------------------------------------------------------------- /src/Raylib/Core/Camera.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/Camera.bf -------------------------------------------------------------------------------- /src/Raylib/Core/Cursor.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/Cursor.bf -------------------------------------------------------------------------------- /src/Raylib/Core/Drawing.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/Drawing.bf -------------------------------------------------------------------------------- /src/Raylib/Core/FileManagement.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/FileManagement.bf -------------------------------------------------------------------------------- /src/Raylib/Core/Gestures.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/Gestures.bf -------------------------------------------------------------------------------- /src/Raylib/Core/Input.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/Input.bf -------------------------------------------------------------------------------- /src/Raylib/Core/Misc.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/Misc.bf -------------------------------------------------------------------------------- /src/Raylib/Core/PersistentStorage.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/PersistentStorage.bf -------------------------------------------------------------------------------- /src/Raylib/Core/ScreenSpace.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/ScreenSpace.bf -------------------------------------------------------------------------------- /src/Raylib/Core/ShaderManagement.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/ShaderManagement.bf -------------------------------------------------------------------------------- /src/Raylib/Core/Timing.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/Timing.bf -------------------------------------------------------------------------------- /src/Raylib/Core/VRCfg.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/VRCfg.bf -------------------------------------------------------------------------------- /src/Raylib/Core/Windowing.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Core/Windowing.bf -------------------------------------------------------------------------------- /src/Raylib/Models.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Models.bf -------------------------------------------------------------------------------- /src/Raylib/Shapes.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Shapes.bf -------------------------------------------------------------------------------- /src/Raylib/Text.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Text.bf -------------------------------------------------------------------------------- /src/Raylib/Textures.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Raylib/Textures.bf -------------------------------------------------------------------------------- /src/Types/AudioStream.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/AudioStream.bf -------------------------------------------------------------------------------- /src/Types/BoneInfo.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/BoneInfo.bf -------------------------------------------------------------------------------- /src/Types/BoundingBox.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/BoundingBox.bf -------------------------------------------------------------------------------- /src/Types/Camera2D.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Camera2D.bf -------------------------------------------------------------------------------- /src/Types/Camera3D.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Camera3D.bf -------------------------------------------------------------------------------- /src/Types/CharInfo.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/CharInfo.bf -------------------------------------------------------------------------------- /src/Types/Color.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Color.bf -------------------------------------------------------------------------------- /src/Types/Font.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Font.bf -------------------------------------------------------------------------------- /src/Types/Image.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Image.bf -------------------------------------------------------------------------------- /src/Types/Material.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Material.bf -------------------------------------------------------------------------------- /src/Types/MaterialMap.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/MaterialMap.bf -------------------------------------------------------------------------------- /src/Types/Matrix.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Matrix.bf -------------------------------------------------------------------------------- /src/Types/Matrix2x2.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Matrix2x2.bf -------------------------------------------------------------------------------- /src/Types/Mesh.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Mesh.bf -------------------------------------------------------------------------------- /src/Types/Model.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Model.bf -------------------------------------------------------------------------------- /src/Types/ModelAnimation.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/ModelAnimation.bf -------------------------------------------------------------------------------- /src/Types/Music.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Music.bf -------------------------------------------------------------------------------- /src/Types/NPatchInfo.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/NPatchInfo.bf -------------------------------------------------------------------------------- /src/Types/Private/rAudioBuffer.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Private/rAudioBuffer.bf -------------------------------------------------------------------------------- /src/Types/Quaternion.bf: -------------------------------------------------------------------------------- 1 | namespace raylib_beef.Types 2 | { 3 | typealias Quaternion = Vector4; 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/Types/Ray.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Ray.bf -------------------------------------------------------------------------------- /src/Types/RayHitInfo.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/RayHitInfo.bf -------------------------------------------------------------------------------- /src/Types/Rectangle.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Rectangle.bf -------------------------------------------------------------------------------- /src/Types/RenderTexture2D.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/RenderTexture2D.bf -------------------------------------------------------------------------------- /src/Types/Shader.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Shader.bf -------------------------------------------------------------------------------- /src/Types/Sound.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Sound.bf -------------------------------------------------------------------------------- /src/Types/Texture.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Texture.bf -------------------------------------------------------------------------------- /src/Types/Transform.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Transform.bf -------------------------------------------------------------------------------- /src/Types/Vector2.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Vector2.bf -------------------------------------------------------------------------------- /src/Types/Vector3.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Vector3.bf -------------------------------------------------------------------------------- /src/Types/Vector4.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Vector4.bf -------------------------------------------------------------------------------- /src/Types/VrDeviceInfo.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/VrDeviceInfo.bf -------------------------------------------------------------------------------- /src/Types/VrStereoConfig.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/VrStereoConfig.bf -------------------------------------------------------------------------------- /src/Types/Wave.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/Wave.bf -------------------------------------------------------------------------------- /src/Types/float16.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/float16.bf -------------------------------------------------------------------------------- /src/Types/float3.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/Types/float3.bf -------------------------------------------------------------------------------- /src/rlgl.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0n7y5/raylib-beef/HEAD/src/rlgl.bf --------------------------------------------------------------------------------