fix build issue from unnecessary inheritance

This commit is contained in:
Cassandra de la Cruz-Munoz 2023-09-24 12:29:17 -04:00
parent 3a1c0c7d91
commit 87cc43ff7f
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ using Godot;
namespace godotVmcSharp namespace godotVmcSharp
{ {
class CameraReceiver : Node3D class CameraReceiver
{ {
readonly Camera3D camera; readonly Camera3D camera;

View File

@ -3,7 +3,7 @@ using Godot;
namespace godotVmcSharp namespace godotVmcSharp
{ {
class DeviceReceiver: Node3D class DeviceReceiver
{ {
readonly Dictionary<string, Node3D> devices; readonly Dictionary<string, Node3D> devices;
public DeviceReceiver() public DeviceReceiver()