Basic framework - server loader, plugin manager, chat interface

This commit is contained in:
John Michael Gross
2016-09-16 19:57:18 -07:00
parent c0a41d6a67
commit f2ec79a286
35 changed files with 1758 additions and 22 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
using VRage.Plugins;
namespace PistonAPI
{
public interface IPistonPlugin : IPlugin
{
string Name { get; }
void Reload();
}
}