mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -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:
parent
bbda84cafb
commit
def2598e05
22
Physac-cs/Physac-cs.csproj
Normal file
22
Physac-cs/Physac-cs.csproj
Normal 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>
|
@ -9,8 +9,9 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Security;
|
||||
using Raylib_cs;
|
||||
|
||||
namespace Raylib_cs
|
||||
namespace Physac_cs
|
||||
{
|
||||
public enum PhysicsShapeType
|
||||
{
|
@ -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).
|
||||
|
||||
# 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
|
||||
|
||||
- Certain funtions take a enum instead of a int such as `IsKeyPressed`.
|
||||
|
22
Raygui-cs/Raygui-cs.csproj
Normal file
22
Raygui-cs/Raygui-cs.csproj
Normal 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>
|
@ -9,8 +9,9 @@
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Security;
|
||||
using System.Text;
|
||||
using Raylib_cs;
|
||||
|
||||
namespace Raylib_cs
|
||||
namespace Raygui_cs
|
||||
{
|
||||
// Style property
|
||||
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
|
@ -14,14 +14,8 @@
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Easings.cs" />
|
||||
<Compile Include="Physac.cs" />
|
||||
<Compile Include="Raygui.cs" />
|
||||
<Compile Include="Raylib.cs" />
|
||||
<Compile Include="Raymath.cs" />
|
||||
<Compile Include="Rlgl.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="../app.config" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
Loading…
x
Reference in New Issue
Block a user