rj-action-library/Runtime/Networking/Session/NetworkSessionRequest.cs

19 lines
338 B
C#
Raw Normal View History

2025-01-08 18:46:17 +00:00
using Godot;
using System.Collections.Generic;
namespace Rokojori
{
[GlobalClass]
public partial class NetworkSessionRequest:Resource
{
[Export]
public string sessionName = null;
[Export]
public int maxMembers = -1;
[Export]
public int port = 1984;
[Export]
public string serverIP = null;
}
}