mirror of
				https://github.com/thunderbrewhq/thunderbrew
				synced 2025-11-04 02:06:03 +03:00 
			
		
		
		
	* chore(build): add vendored SDL 3.0.0 library * chore(build): add vendored glew-cmake-2.2.0 library * feat(console): in the presence of -opengl launch flag, change GxApi to OpenGl * feat(gx): add uncompleted CGxDeviceGLSDL targeting Windows and Linux * chore(build): change SDL3 linkage from shared (bad) to to static (good)
		
			
				
	
	
		
			27 lines
		
	
	
		
			1021 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1021 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
    android:layout_width="match_parent"
 | 
						|
    android:layout_height="match_parent"
 | 
						|
    android:paddingLeft="16dp"
 | 
						|
    android:paddingRight="16dp"
 | 
						|
    android:orientation="vertical" >
 | 
						|
    <TextView
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:inputType="textImeMultiLine|textNoSuggestions"
 | 
						|
        android:text="@string/label_enter_arguments" />
 | 
						|
    <EditText
 | 
						|
        android:id="@+id/arguments_edit"
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="0dp"
 | 
						|
        android:layout_weight="1"
 | 
						|
        android:gravity="top"
 | 
						|
        android:hint="@string/hint_enter_arguments_here" />
 | 
						|
    <Button
 | 
						|
        android:id="@+id/arguments_start_button"
 | 
						|
        android:layout_width="100dp"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_gravity="end"
 | 
						|
        android:text="@string/button_start_app" />
 | 
						|
</LinearLayout>
 |