dashboard
repositories
filestore
activity
search
login
魏旭东
/
GemBattle
forked from
GemBattle
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
无尽模式关卡打点需要
chenxin
2020-10-27
e33d0e85cf5d01e953d95197488eeffc67835f3a
[~wxd/GemBattle.git]
/
Assets
/
PostProcessing
/
Runtime
/
Attributes
/
GetSetAttribute.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace UnityEngine.PostProcessing
{
public sealed class GetSetAttribute : PropertyAttribute
{
public readonly string name;
public bool dirty;
public GetSetAttribute(string name)
{
this.name = name;
}
}
}