[Core] Language system

This commit is contained in:
Eric Kotato 2022-09-15 23:33:06 +03:00 committed by Ilya Fedin
parent e7c598affe
commit f69d4a4398

View file

@ -87,6 +87,9 @@ public:
_offset -= extent;
_length += extent;
}
void extendToRight(int extent) {
_length += extent;
}
void shrinkFromRight(int shrink) {
_length -= shrink;
}