using System;
using Sources.Views;
using UnityEngine;
namespace Sources.Infrastructure
{
public class ZTest : MonoBehaviour
public ZTestView view;
private void Start()
this.view.BindingContext = new ZTestViewModel();
view.Reveal(true);
}