|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UniRx;
|
|
|
|
public class CharacterModel : BaseModel
|
|
{
|
|
public IntReactiveProperty mLevel = new IntReactiveProperty(0);
|
|
public IReadOnlyReactiveProperty<int> Level => mLevel;
|
|
|
|
|
|
|
|
}
|