Many poops.

Basically working resource system
Improved projectile movement
Better receive messages
Include Lidgren.Network in core
This commit is contained in:
Sardelka
2022-06-11 18:41:10 +08:00
parent 7ccccabe1d
commit 88a4f046d4
157 changed files with 24587 additions and 876 deletions

View File

@ -9,7 +9,9 @@ namespace RageCoop.Client.Scripting
/// <summary>
/// Inherit from this class, constructor will be called when the script is loaded.
/// </summary>
public abstract class ClientScript
public abstract class ClientScript:Core.Scripting.IScriptable
{
public abstract void OnStart();
public abstract void OnStop();
}
}