setup android project
This commit is contained in:
parent
624d4043d9
commit
49168d2f39
25 changed files with 122 additions and 0 deletions
13
Raylib-cs.Android/MainActivity.cs
Normal file
13
Raylib-cs.Android/MainActivity.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
namespace Raylib_cs.Android;
|
||||
|
||||
[Activity(Label = "@string/app_name", MainLauncher = true)]
|
||||
public class MainActivity : Activity
|
||||
{
|
||||
protected override void OnCreate(Bundle? savedInstanceState)
|
||||
{
|
||||
base.OnCreate(savedInstanceState);
|
||||
|
||||
// Set our view from the "main" layout resource
|
||||
SetContentView(Resource.Layout.activity_main);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue