17 lines
318 B
C#
17 lines
318 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|