pascalabcnet/bin/Lib/OpenGLABC.pas

18 lines
313 B
ObjectPascal
Raw Permalink Normal View History

2019-09-09 21:04:21 +03:00

///
///Модуль, зарезервированный для высокоуровневой оболочки модуля OpenGL
///
unit OpenGLABC;
2019-07-18 03:47:28 +03:00
interface
uses OpenGL;
implementation
begin
Writeln('OpenGLABC');
Writeln(new System.NotImplementedException);
Readln;
Halt;
end.