2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00
raylib-cs/Examples/Program.cs
ChrisDill 62561d0bdb Setting up examples project
- Dedicated project for raylib examples using Bindings as a class library.
2018-09-10 11:42:18 +01:00

12 lines
163 B
C#

namespace ExamplesTest
{
class Program
{
static void Main(string[] args)
{
Examples.core_basic_window();
}
}
}