Files
OpenBullet/PluginFramework/IBlockPlugin.cs
T
2020-03-11 03:30:44 +01:00

18 lines
295 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PluginFramework
{
public interface IBlockPlugin
{
string Name { get; }
string Color { get; }
bool LightForeground { get; }
}
}