20 lines
348 B
Plaintext
20 lines
348 B
Plaintext
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using PuzzleDefine;
|
|
|
|
public class PuzzlePlayer : MonoBehaviour
|
|
{
|
|
public static PuzzlePlayer main;
|
|
|
|
public Attribute MaxHealth;
|
|
|
|
public List<HeroID> HeroIDs;
|
|
|
|
private void Awake()
|
|
{
|
|
main = this;
|
|
DontDestroyOnLoad(gameObject);
|
|
}
|
|
}
|