First draft of an element which deletes points

This commit is contained in:
Pieter Vander Vennet 2021-07-01 02:26:45 +02:00
parent bbfcee686f
commit 5d3365afb8
13 changed files with 407 additions and 169 deletions

View file

@ -30,6 +30,9 @@ export default class Translations {
console.error(msg, t);
throw msg
}
if(t instanceof Translation){
return t;
}
return new Translation(t, context);
}