public FiguresControllerTests()
        {
            _fixture = new Fixture();

            _mediatorMock = new Mock <IMediator>(MockBehavior.Strict);

            _controller = new FiguresController(_mediatorMock.Object);
        }
示例#2
0
    // Start is called before the first frame update
    void Awake()
    {
        NowActiveFigure = FigureTypes.FirstPlayer;

        if (instance == null)
        {
            instance = this;
        }
    }
示例#3
0
 void Start()
 {
     _figuresController = FiguresController.instance;
 }