11 lines
186 B
C#
11 lines
186 B
C#
using UnityEngine;
|
|
|
|
namespace Darkmatter.Core
|
|
{
|
|
public interface ILeaderBoardController
|
|
{
|
|
void ShowLeaderBoard();
|
|
void UpdateLeaderBoardScore(int score);
|
|
}
|
|
}
|