Change gameplay
This commit is contained in:
parent
d79900e3ea
commit
34dae300da
56 changed files with 906 additions and 400 deletions
8
backend/src/objects/generates-points.ts
Normal file
8
backend/src/objects/generates-points.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
export interface GeneratesPoints {
|
||||
getPoints(): {
|
||||
decla: number;
|
||||
red: number;
|
||||
};
|
||||
}
|
||||
|
||||
export const generatesPoints = (a: any): a is GeneratesPoints => a && 'getPoints' in a;
|
||||
Loading…
Add table
Add a link
Reference in a new issue