feat: viewport constants

This commit is contained in:
karishmas6
2024-06-21 22:16:05 +05:30
parent fa621e2a8c
commit 590b84e322

5
src/constants/const.ts Normal file
View File

@@ -0,0 +1,5 @@
export const VIEWPORT_W = 1280;
export const VIEWPORT_H = 720;
export const ONE_PERCENT_OF_VIEWPORT_W = VIEWPORT_W / 100;
export const ONE_PERCENT_OF_VIEWPORT_H = VIEWPORT_H / 100;