9 lines
93 B
C
9 lines
93 B
C
|
#pragma once
|
||
|
|
||
|
namespace KapitanGame {
|
||
|
enum class KPlayer : int {
|
||
|
Player1,
|
||
|
Player2
|
||
|
};
|
||
|
}
|