mirror of
https://github.com/lov3b/Pong.git
synced 2025-09-13 00:00:21 +02:00
8 lines
93 B
C++
8 lines
93 B
C++
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
#pragma once
|
|
|
|
enum class Side {
|
|
LEFT, RIGHT
|
|
};
|