You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
569 B
24 lines
569 B
import React, { Component } from 'react';
|
|
// import sharedStyles from './shared-styles';
|
|
// import {
|
|
// Platform,
|
|
// StyleSheet,
|
|
// Image,
|
|
// ListView,
|
|
// Text,
|
|
// ScrollView,
|
|
// TextInput,
|
|
// TouchableHighlight,
|
|
// View
|
|
// } from 'react-native';
|
|
|
|
export default class CapturedArea {
|
|
constructor(userID, coordinates, strokeColor, fillColor, area) {
|
|
this.userID = userID;
|
|
this.coordinates = coordinates;
|
|
this.strokeColor = strokeColor;
|
|
this.fillColor = fillColor;
|
|
this.area = area;
|
|
}
|
|
}
|