mirror of
https://github.com/lov3b/Pong.git
synced 2024-11-14 01:10:10 +01:00
14 lines
181 B
C
14 lines
181 B
C
|
//
|
||
|
// Created by love on 2024-01-19.
|
||
|
//
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
enum class BumpType {
|
||
|
WALL, PADDLE, BOTH
|
||
|
};
|
||
|
|
||
|
enum class PaddleDirection {
|
||
|
MOVING_UP, NOT_MOVING, MOVING_DOWN, NONE
|
||
|
};
|