C6BB7B13-AE3D-418E-92ED-82AC4B911429
using System;
using System.Collections.Generic;
using UnityEngine;
namespace UniRx
{
/// <summary>
/// Inspectable ReactiveProperty.
/// </summary>
[Serializable]
public class IntReactiveProperty : ReactiveProperty<int>
{
public IntReactiveProperty()
: base()
{
}
public IntReactiveProperty(int initialValue)
: base(initialValue)
{
{
}
}