Last active
January 27, 2022 19:09
-
-
Save percybolmer/7535e3580ba8274c876f57005cc53e81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Moveable is a interface that is used to handle many objects that are moveable | |
// To implement this interface you need a Generic Type with a Constraint of Subtractable | |
type Moveable[S Subtractable] interface { | |
Move(S) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment