diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-06-19 16:57:35 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-06-19 16:57:35 -0400 |
commit | 76702f62bc0f0e91ad64eec677ce56813601c906 (patch) | |
tree | 776219582cf80e135ddd0d47ac7e59057696371e /src/lib/utils/CanvasProgressBar.ts | |
parent | 7dd24cbd5456891da58054bf343aa7f513f51205 (diff) | |
download | tanzanite-76702f62bc0f0e91ad64eec677ce56813601c906.tar.gz tanzanite-76702f62bc0f0e91ad64eec677ce56813601c906.tar.bz2 tanzanite-76702f62bc0f0e91ad64eec677ce56813601c906.zip |
some documentation
Diffstat (limited to 'src/lib/utils/CanvasProgressBar.ts')
-rw-r--r-- | src/lib/utils/CanvasProgressBar.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/utils/CanvasProgressBar.ts b/src/lib/utils/CanvasProgressBar.ts index 21c4e22..fb4f778 100644 --- a/src/lib/utils/CanvasProgressBar.ts +++ b/src/lib/utils/CanvasProgressBar.ts @@ -1,6 +1,9 @@ import { CanvasRenderingContext2D } from 'canvas'; -// I just copy pasted this code from stackoverflow don't yell at me if there is issues for it +/** + * I just copy pasted this code from stackoverflow don't yell at me if there is issues for it + * @author @TymanWasTaken + */ export class CanvasProgressBar { private readonly x: number; private readonly y: number; |