Add minimum viable product

This commit is contained in:
Spotlight 2021-11-15 02:33:34 -06:00
commit 5a5dfb7bb2
Signed by: spotlight
GPG key ID: 874AA355B3209BDC
41 changed files with 405 additions and 0 deletions

21
Headers/CAState.h Normal file
View file

@ -0,0 +1,21 @@
//
// CAState.h
// ScreenShredder
//
// Created by Spotlight Deveaux on 2021-11-14.
//
#ifndef CAState_h
#define CAState_h
@import QuartzCore;
@interface CAState : NSObject
// We most likely don't need to define its methods, as we use none directly.
// Instead, we define this solely for type checking.
// (I apologize if you were looking for them here.)
@end
#endif /* CAState_h */