mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-09-09 03:01:41 -04:00
14 lines
363 B
C#
14 lines
363 B
C#
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);
|
|
}
|
|
}
|