20 lines
403 B
C#
20 lines
403 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Fraction : FractionManager
|
|
{
|
|
public new int id;
|
|
[Header("是否完成")]
|
|
public bool CompletedorNot;
|
|
[Header("是否是错误项")]
|
|
public bool Erroritem;
|
|
[Header("当前项分数")]
|
|
public int scorercontinuer;
|
|
private void OnDisable()
|
|
{
|
|
base.id.Enqueue(id);
|
|
}
|
|
//public
|
|
}
|