dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
GM Panel修改
chenxin
2020-11-28
eafda00b2799204f913a11c835bd9ca7c64dd1e7
[GemBattle.git]
/
Assets
/
PostProcessing
/
Runtime
/
Attributes
/
TrackballAttribute.cs
1
2
3
4
5
6
7
8
9
10
11
12
namespace UnityEngine.PostProcessing
{
public sealed class TrackballAttribute : PropertyAttribute
{
public readonly string method;
public TrackballAttribute(string method)
{
this.method = method;
}
}
}