This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"info": { | |
"_postman_id": "084e1aa4-990f-47be-a872-8687ad49f7f8", | |
"name": "Office365", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
}, | |
"item": [ | |
{ | |
"name": "Office365 StackOverflow thing", | |
"request": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// MCPart+NSCoding.swift | |
// MonsterMe | |
// | |
// Created by Elliot Fiske on 3/15/15. | |
// Copyright (c) 2015 Monster Create. All rights reserved. | |
// | |
// Implements NSCoding for MCParts - lets us convert an MCPart object to an NSData object and back again | |
import Foundation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Rectangle class. Origin at (x, y), with specified width and height. | |
* bounceTime lets us animate bounciness on mouse down. | |
*/ | |
function Rect(x, y, width, height) { | |
this.x = x; | |
this.y = y; | |
this.x2 = function() { return this.x + this.width }; | |
this.y2 = function() { return this.y + this.height }; | |
this.height = height; |