Skip to content
Permalink
153f4fbcdb
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
19 lines (17 sloc) 315 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;
}