IT BUILDS!!!

- Removed LocalizationServices and other sus things.
- Rewrote AssemblyLoader
[In Progress] SafeStorageService
[In Progress] LuaScriptLoader
This commit is contained in:
MapleWheels
2025-03-30 06:20:45 -04:00
committed by Maplewheels
parent 52d920d969
commit c6713f37bb
67 changed files with 3336 additions and 1283 deletions
@@ -22,7 +22,7 @@ internal partial class NetworkingService : INetworkingService
ReceiveIds
}
private Dictionary<Guid, INetVar> netVars = new Dictionary<Guid, INetVar>();
private Dictionary<Guid, INetworkSyncEntity> netVars = new Dictionary<Guid, INetworkSyncEntity>();
private Dictionary<Guid, NetMessageReceived> netReceives = new Dictionary<Guid, NetMessageReceived>();
private Dictionary<ushort, Guid> packetToId = new Dictionary<ushort, Guid>();
private Dictionary<Guid, ushort> idToPacket = new Dictionary<Guid, ushort>();
@@ -46,7 +46,7 @@ internal partial class NetworkingService : INetworkingService
#endif
}
public void RegisterNetVar(INetVar netVar)
public void RegisterNetVar(INetworkSyncEntity netVar)
{
netVars[netVar.InstanceId] = netVar;
@@ -58,7 +58,7 @@ internal partial class NetworkingService : INetworkingService
};
}
public void SendNetVar(INetVar netVar)
public void SendNetVar(INetworkSyncEntity netVar)
{
if (netVars.ContainsKey(netVar.InstanceId))
{