dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Init Project
chenxin
2020-10-19
69d78dba3b74f57708d0a5c04d3f0d8606f3ae9f
[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;
}
}
}