fork download
  1. //Vertex.h
  2. #pragma once
  3. #include "Math.h"
  4.  
  5. struct Vertex
  6. {
  7. Vector3 pos;
  8. Vector3 color;
  9. Vector2 uv;
  10. };
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:2:9: warning: #pragma once in main file [enabled by default]
 #pragma once
         ^
prog.cpp:3:18: fatal error: Math.h: No such file or directory
 #include "Math.h"
                  ^
compilation terminated.
stdout
Standard output is empty