88a4f046d4
Basically working resource system Improved projectile movement Better receive messages Include Lidgren.Network in core
16 lines
279 B
C#
16 lines
279 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Linq;
|
|
namespace RageCoop.Core.Scripting
|
|
{
|
|
public interface IScriptable
|
|
{
|
|
void OnStart();
|
|
void OnStop();
|
|
}
|
|
}
|