mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-09-09 03:01:41 -04:00
setup android project
This commit is contained in:
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user