9 lines
126 B
C#
9 lines
126 B
C#
using System;
|
|
|
|
namespace BetterRaid.Services;
|
|
|
|
public interface ISynchronizaionService
|
|
{
|
|
void Invoke(Action action);
|
|
}
|