deleted unused C64.Thread.pas file

This commit is contained in:
Dennis1000 2017-03-09 15:20:16 +01:00
parent dcd1f81487
commit d5ca8ec7c4
1 changed files with 0 additions and 41 deletions

View File

@ -1,41 +0,0 @@
unit C64.Thread;
interface
uses
System.Classes, C64;
type
TC64Thread = class(TThread)
private
C64: TC64;
protected
public
procedure Execute; override;
constructor Create(C64Instance: TC64);
destructor Destroy; override;
end;
implementation
{ TC64Thread }
constructor TC64Thread.Create(C64Instance: TC64);
begin
inherited Create(True);
C64 := C64Instance;
end;
destructor TC64Thread.Destroy;
begin
inherited;
end;
procedure TC64Thread.Execute;
begin
inherited;
end;
end.