浏览代码

Corrected path slash separator

pull/207/head
Ray 9 年前
父节点
当前提交
ab9f5d5780
共有 5 个文件被更改,包括 5 次插入5 次删除
  1. +1
    -1
      examples/physics_demo.c
  2. +1
    -1
      examples/physics_friction.c
  3. +1
    -1
      examples/physics_movement.c
  4. +1
    -1
      examples/physics_restitution.c
  5. +1
    -1
      examples/physics_shatter.c

+ 1
- 1
examples/physics_demo.c 查看文件

@ -12,7 +12,7 @@
#include "raylib.h"
#define PHYSAC_IMPLEMENTATION
#include "..\src\physac.h"
#include "../src/physac.h"
int main()
{

+ 1
- 1
examples/physics_friction.c 查看文件

@ -12,7 +12,7 @@
#include "raylib.h"
#define PHYSAC_IMPLEMENTATION
#include "..\src\physac.h"
#include "../src/physac.h"
int main()
{

+ 1
- 1
examples/physics_movement.c 查看文件

@ -12,7 +12,7 @@
#include "raylib.h"
#define PHYSAC_IMPLEMENTATION
#include "..\src\physac.h"
#include "../src/physac.h"
#define VELOCITY 0.5f

+ 1
- 1
examples/physics_restitution.c 查看文件

@ -12,7 +12,7 @@
#include "raylib.h"
#define PHYSAC_IMPLEMENTATION
#include "..\src\physac.h"
#include "../src/physac.h"
int main()
{

+ 1
- 1
examples/physics_shatter.c 查看文件

@ -12,7 +12,7 @@
#include "raylib.h"
#define PHYSAC_IMPLEMENTATION
#include "..\src\physac.h"
#include "../src/physac.h"
int main()
{

正在加载...
取消
保存