mirror of
https://github.com/ksherlock/ample.git
synced 2024-11-19 18:33:48 +00:00
18 lines
240 B
Mathematica
18 lines
240 B
Mathematica
|
//
|
||
|
// FlippedView.m
|
||
|
// MA2ME
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 8/19/2020.
|
||
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "FlippedView.h"
|
||
|
|
||
|
@implementation FlippedView
|
||
|
|
||
|
-(BOOL)isFlipped {
|
||
|
return YES;
|
||
|
}
|
||
|
|
||
|
@end
|