Skip to content
Permalink
b63717c586
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (15 sloc) 306 Bytes
package model;
public class activity {
public String title;
public String details;
public String misc;
// Constructor
public activity(String a, String b, String c){
this.title=a;
this.details=b;
this.misc=c;
}
activity newactivity;
activity joke;
activity games;
}