mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 10:34:30 +08:00
删除了游戏框架中原有的整套输入系统接口和实现类, 包括 IGameInputEvent、IInputContext、IInputTranslator、 InputContextStack、InputEvents、InputSystem 等定义。 同时移除了 Godot 模块中与之关联的输入桥接与翻译组件, 如 AbstractGodotInputModule、GodotInputBridge、 GodotInputTranslator 等,为重构或替换新的输入系统做准备。
18 lines
515 B
XML
18 lines
515 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<PackageId>GeWuYou.GFramework.Game</PackageId>
|
|
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="entities\" />
|
|
<Folder Include="input\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GFramework.Core\GFramework.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|