aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/miz_hi/smileessence/command/CommandOpenPostPage.java
blob: 8ff4910ec636e54617819fb75ba5dda5ccdcee5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package net.miz_hi.smileessence.command;

import net.miz_hi.smileessence.system.PostSystem;

public class CommandOpenPostPage extends MenuCommand
{

	@Override
	public String getName()
	{
		return "つぶやく";
	}

	@Override
	public void workOnUiThread()
	{
		PostSystem.openPostPage();
	}

}