2006-01-20 15:34:02 +00:00
|
|
|
/*
|
|
|
|
* Status.h
|
|
|
|
* Cog
|
|
|
|
*
|
2006-09-04 18:46:18 +00:00
|
|
|
* Created by Vincent Spader on 1/14/06.
|
|
|
|
* Copyright 2006 Vincent Spader. All rights reserved.
|
2006-01-20 15:34:02 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-02-06 21:20:03 +00:00
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
typedef NS_ENUM(NSInteger, CogStatus) {
|
|
|
|
CogStatusStopped = 0,
|
|
|
|
CogStatusPaused,
|
|
|
|
CogStatusPlaying,
|
|
|
|
CogStatusStopping,
|
2006-01-20 15:34:02 +00:00
|
|
|
};
|