mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-11 02:31:04 +00:00
17 lines
208 B
C
17 lines
208 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace Web::HTML {
|
||
|
|
|
||
|
|
enum class AudioPlayState {
|
||
|
|
Paused,
|
||
|
|
Playing,
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|