20 lines
360 B
Java
20 lines
360 B
Java
package Classes.css.user;
|
|
|
|
import Classes.css.core.Context;
|
|
|
|
public class ContextBuilder{
|
|
|
|
public static void createContext(){
|
|
|
|
/* (1) Screen dimensions */
|
|
Context.bind("screen-width", 1280);
|
|
Context.bind("screen-height", 720);
|
|
|
|
/* (2) Base layout dimension */
|
|
Context.bind("header-height", 50);
|
|
Context.bind("menu-width", 237);
|
|
|
|
}
|
|
|
|
}
|