10 lines
168 B
C++
10 lines
168 B
C++
//
|
|
// Created by sebastian on 05.08.26.
|
|
//
|
|
|
|
#include "LudoRules.h"
|
|
|
|
int ludo::LudoRules::getEntryOffset(PlayerColor color) {
|
|
return static_cast<int>(color) * 10;
|
|
}
|