-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Abstractions project #413
Abstractions project #413
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. I do wonder if some of these new interfaces should be abstract classes instead.
I guess with as many properties as there are here, I suppose abstract classes would make more sense, yeah. |
Switched to abstract classes for AutoTracker, Tracker, and the SpeechRecognitionService (due to the event - interfaces don't seem to work well with events that aren't used). While I was at it, I cleaned up a lot of the warnings that had cropped up in builds since the .net 7 upgrade, most of which were in regards to code being only accessible on Windows. |
Created a new abstractions project to hold interfaces and whatnot. For now, I just moved some of the Tracker stuff in there. The game mode interface will go in there, and we can probably slowly pull other things in there over time.