mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 20:06:46 +00:00
8 lines
176 B
TypeScript
8 lines
176 B
TypeScript
import { DefaultConfig } from "../../src/core/configuration/DefaultConfig";
|
|
|
|
export class TestConfig extends DefaultConfig {
|
|
samHittingChance(): number {
|
|
return 1;
|
|
}
|
|
}
|