2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-06-30 19:03:42 -04:00

Setting up examples project

- Dedicated project for raylib examples using Bindings as a class library.
This commit is contained in:
2018-09-10 11:42:18 +01:00
parent 5339ae06cb
commit 62561d0bdb
283 changed files with 12554 additions and 4 deletions

11
Examples/Program.cs Normal file
View File

@ -0,0 +1,11 @@

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