10 lines
168 B
C#
10 lines
168 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class User : Singleton<User>
|
||
|
{
|
||
|
public int userId;
|
||
|
public int escapeId;
|
||
|
}
|