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

Porting examples

- Test.Common now used for Examples project.
- Testing examples alot.
This commit is contained in:
2018-10-22 16:10:20 +01:00
parent 4a5299504a
commit 6a02bb9d08
97 changed files with 516 additions and 366 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,9 @@
using Raylib;
using static Raylib.Raylib;
using static Raylib.CameraType;
using static Raylib.CameraMode;
public partial class Examples
public partial class core_3d_camera_first_person
{
/*******************************************************************************************
/*******************************************************************************************
*

View File

@ -1,7 +1,9 @@
using Raylib;
using static Raylib.Raylib;
using static Raylib.CameraType;
using static Raylib.CameraMode;
public partial class Examples
public partial class core_3d_camera_free
{
/*******************************************************************************************
/*******************************************************************************************
*

View File

@ -1,7 +1,8 @@
using Raylib;
using static Raylib.Raylib;
using static Raylib.CameraType;
public partial class Examples
public partial class core_3d_mode
{
/*******************************************************************************************
/*******************************************************************************************
*

View File

@ -1,7 +1,9 @@
using Raylib;
using static Raylib.Raylib;
using static Raylib.CameraType;
using static Raylib.CameraMode;
public partial class Examples
public partial class core_3d_picking
{
/*******************************************************************************************
/*******************************************************************************************
*

View File

@ -1 +1 @@
using Raylib;
using Raylib;

View File

@ -1,7 +1,7 @@
using Raylib;
using static Raylib.Raylib;
public partial class Examples
public partial class core_color_select
{
/*******************************************************************************************
/*******************************************************************************************
*

View File

@ -1,7 +1,7 @@
using Raylib;
using static Raylib.Raylib;
public partial class Examples
public partial class core_drop_files
{
/*******************************************************************************************
/*******************************************************************************************
*

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1,7 @@
using Raylib;
using Raylib;
using static Raylib.Raylib;
public partial class core_input_keys
{
/*******************************************************************************************
*

View File

@ -1 +1,7 @@
using Raylib;
using Raylib;
using static Raylib.Raylib;
public partial class core_input_mouse
{
/*******************************************************************************************
*

View File

@ -1 +1,11 @@
using Raylib;
using Raylib;
using static Raylib.Raylib;
public partial class core_mouse_wheel
{
/*******************************************************************************************
*
* raylib [core] examples - Mouse wheel
*
* This test has been created using raylib 1.1 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)

View File

@ -1,7 +1,8 @@
using Raylib;
using static Raylib.Raylib;
public partial class Examples
public partial class core_random_values
{
/*******************************************************************************************
/*******************************************************************************************
*
* raylib [core] example - Generate random values

View File

@ -1,7 +1,17 @@
using Raylib;
using static Raylib.Raylib;
public partial class Examples
public partial class core_storage_values
{
/*******************************************************************************************
/*******************************************************************************************
*
* raylib [core] example - Storage save/load values
*
* This example has been created using raylib 1.4 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
// NOTE: Storage positions must start with 0, directly related to file memory layout

View File

@ -1,7 +1,10 @@
using Raylib;
using static Raylib.Raylib;
using static Raylib.CameraType;
using static Raylib.CameraMode;
using static Raylib.VrDeviceType;
public partial class Examples
public partial class core_vr_simulator
{
/*******************************************************************************************
/*******************************************************************************************
*

View File

@ -1,7 +1,9 @@
using Raylib;
using static Raylib.Raylib;
using static Raylib.CameraType;
using static Raylib.CameraMode;
public partial class Examples
public partial class core_world_screen
{
/*******************************************************************************************
/*******************************************************************************************
*