ZXIPoint.h 333 B

1234567891011121314151617
  1. // Copyright 2022 KURZ Digital Solutions GmbH
  2. //
  3. // SPDX-License-Identifier: Apache-2.0
  4. #import <Foundation/Foundation.h>
  5. NS_ASSUME_NONNULL_BEGIN
  6. @interface ZXIPoint : NSObject
  7. @property(nonatomic) NSInteger x;
  8. @property(nonatomic) NSInteger y;
  9. - (instancetype)initWithX:(NSInteger)x y:(NSInteger)y;
  10. @end
  11. NS_ASSUME_NONNULL_END