2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

Moving Physac and Raygui into their own libraries and marking them as experimental.

- Both bindings have causes confusion and issues in project setup. Moving them into separate libraries should make things clearer and easier to maintain.
This commit is contained in:
ChrisDill 2020-04-28 20:52:23 +01:00
parent bbda84cafb
commit def2598e05
6 changed files with 69 additions and 25 deletions

View File

@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Platforms>x64</Platforms>
</PropertyGroup>
<PropertyGroup>
<EnableDefaultItems>false</EnableDefaultItems>
<AssemblyName>Physac-cs</AssemblyName>
<RootNamespace>Physac_cs</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<Compile Include="Physac.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../Raylib-cs/Raylib-cs.csproj" />
</ItemGroup>
</Project>

View File

@ -9,8 +9,9 @@
using System; using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Security; using System.Security;
using Raylib_cs;
namespace Raylib_cs namespace Physac_cs
{ {
public enum PhysicsShapeType public enum PhysicsShapeType
{ {

View File

@ -48,6 +48,10 @@ static class Program
The Examples for Raylib-cs have moved and can be found at [Raylib-cs-Examples](https://github.com/ChrisDill/Raylib-cs-Examples). The Examples for Raylib-cs have moved and can be found at [Raylib-cs-Examples](https://github.com/ChrisDill/Raylib-cs-Examples).
# Physac-cs and Raygui-cs
These are unfinished EXPERIMENTAL bindings to physac and raygui. They were initially added as a test to Raylib-cs but caused confusion and issues in project setup so they were moved into their own libraries Physac-cs and Raygui-cs that depend on Raylib-cs.
# Tech notes # Tech notes
- Certain funtions take a enum instead of a int such as `IsKeyPressed`. - Certain funtions take a enum instead of a int such as `IsKeyPressed`.

View File

@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Platforms>x64</Platforms>
</PropertyGroup>
<PropertyGroup>
<EnableDefaultItems>false</EnableDefaultItems>
<AssemblyName>Raygui-cs</AssemblyName>
<RootNamespace>Raygui_cs</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<Compile Include="Raygui.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../Raylib-cs/Raylib-cs.csproj" />
</ItemGroup>
</Project>

View File

@ -9,8 +9,9 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Security; using System.Security;
using System.Text; using System.Text;
using Raylib_cs;
namespace Raylib_cs namespace Raygui_cs
{ {
// Style property // Style property
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]

View File

@ -14,14 +14,8 @@
<ItemGroup> <ItemGroup>
<Compile Include="Easings.cs" /> <Compile Include="Easings.cs" />
<Compile Include="Physac.cs" />
<Compile Include="Raygui.cs" />
<Compile Include="Raylib.cs" /> <Compile Include="Raylib.cs" />
<Compile Include="Raymath.cs" /> <Compile Include="Raymath.cs" />
<Compile Include="Rlgl.cs" /> <Compile Include="Rlgl.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Include="../app.config" />
</ItemGroup>
</Project> </Project>