ColorRace/game/src/ludo/LudoRules.cpp
2026-08-05 18:34:02 +02:00

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;
}