dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Merge commit 'd8cf63f1b6ab597f279ee106527379a50bfb63d2'
wangguan
2020-12-10
5f6fb6dccd1330b5b0bcb2d721167a6ac062f3ad
[GemBattle.git]
/
Assets
/
Scripts
/
Common
/
DoNotDestory.cs
1
2
3
4
5
6
7
8
9
10
11
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DoNotDestory : MonoBehaviour
{
public void Awake()
{
DontDestroyOnLoad(gameObject);
}
}