You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to tackle this over the holiday period. At first I was worrying about the fact that the T type is arbitrary and likely tied to user code. Then I realized we can just parse the Roslyn code tree to find the names of the T classes and (if it's not a standard Type) declare our own completely empty ones pre compilation (i.e. at Open time)
e.g.
// Just declare each of the users classes ourselves in memoryclassGameObject{}
The text was updated successfully, but these errors were encountered:
One of the cool things about TreeView is it's ability to support generics e.g.
I want to tackle this over the holiday period. At first I was worrying about the fact that the T type is arbitrary and likely tied to user code. Then I realized we can just parse the Roslyn code tree to find the names of the T classes and (if it's not a standard Type) declare our own completely empty ones pre compilation (i.e. at Open time)
e.g.
The text was updated successfully, but these errors were encountered: