cache getter and clear methods were not implemented (#585)

This commit is contained in:
dk 2020-07-13 17:30:03 -07:00 committed by GitHub
parent cc893e4dd4
commit 5fdbb6a094
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -24,11 +24,11 @@ type animationManager struct {
}
func (am *animationManager) ClearCache() {
panic("implement me")
am.cache.Clear()
}
func (am *animationManager) GetCache() d2interface.Cache {
panic("implement me")
return am.cache
}
func createAnimationManager(renderer d2interface.Renderer) *animationManager {