16 lines
338 B
C#
16 lines
338 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace StardustCore.Interfaces
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Used to mark items that are valid tools so we can do things like if(Item is IToolSerializer)
|
|||
|
/// </summary>
|
|||
|
interface IToolSerializer
|
|||
|
{
|
|||
|
}
|
|||
|
}
|