We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7d200c commit cba28caCopy full SHA for cba28ca
README.md
@@ -111,13 +111,19 @@ public class AddTypeMenuCommand : ICommand {
111
Debug.Log("Execute AddTypeMenuCommand");
112
}
113
114
+
115
+[Serializable]
116
+public struct StructCommand : ICommand {
117
+ public void Execute () {
118
+ Debug.Log("Execute StructCommand");
119
+ }
120
+}
121
```
122
123
#### Supported Types
124
125
The `SubclassSelector` attribute supports types that meet the following conditions.
126
-- Class
127
- Public
128
- Not abstract
129
- Not generic
0 commit comments