#pragma once and static variables

This commit is contained in:
Duy Tran Khanh 2021-01-15 05:35:04 +07:00 committed by GitHub
parent f7aa555592
commit 1fd46a3e94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,4 @@
#ifndef AWT_GLOBAL_H
#define AWT_GLOBAL_H
int GLOBAL_WIDTH;
int GLOBAL_HEIGHT;
#endif // AWT_GLOBAL_H
#pragma once
static int GLOBAL_WIDTH;
static int GLOBAL_HEIGHT;