2025-01-08 18:46:17 +00:00
|
|
|
using Godot;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
|
|
{
|
2025-06-10 13:16:36 +00:00
|
|
|
[Tool][GlobalClass]
|
2025-01-08 18:46:17 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|