b863b7037a
Prepare for client side scripting.
18 lines
297 B
C#
18 lines
297 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RageCoop.Client.Scripting
|
|
{
|
|
public abstract class ClientScript
|
|
{
|
|
public class Events
|
|
{
|
|
|
|
}
|
|
public abstract void Main();
|
|
}
|
|
}
|