14 lines
277 B
C#
14 lines
277 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Game.CombatSystem
|
|||
|
{
|
|||
|
public interface ICombatSystem
|
|||
|
{
|
|||
|
void CombatStart(List<Character> characters1, List<Character> characters2);
|
|||
|
void CombatEnd();
|
|||
|
}
|
|||
|
public class CombatSystem
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|