blob: 6ef559b246db4f79843813517b01c404c945934d [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import type {SpriteDefinition} from './offline_sprite_definitions.js';
/**
* Interface to retrieve the different image sprite sheets shared across the
* dino game.
*/
export interface ImageSpriteProvider {
getOrigImageSprite(): HTMLImageElement;
getRunnerImageSprite(): HTMLImageElement;
getRunnerAltGameImageSprite(): HTMLImageElement|null;
getAltCommonImageSprite(): HTMLImageElement|null;
getSpriteDefinition(): SpriteDefinition;
}