Commit 85fc78c5 authored by nanahira's avatar nanahira

rename

parent 13d3dcb5
...@@ -20,8 +20,8 @@ public class MyCard : WindowServantSP ...@@ -20,8 +20,8 @@ public class MyCard : WindowServantSP
{ {
createWindow(Program.I().new_ui_mycard); createWindow(Program.I().new_ui_mycard);
UIHelper.registEvent(gameObject, "exit_", onClickExit); UIHelper.registEvent(gameObject, "exit_", onClickExit);
UIHelper.registEvent(gameObject, "joinAthletic_", onJoinAthletic); UIHelper.registEvent(gameObject, "joinAthletic_", onClickJoinAthletic);
UIHelper.registEvent(gameObject, "joinEntertain_", onJoinEntertain); UIHelper.registEvent(gameObject, "joinEntertain_", onClickJoinEntertain);
UIHelper.registEvent(gameObject, "database_", onClickDatabase); UIHelper.registEvent(gameObject, "database_", onClickDatabase);
UIHelper.registEvent(gameObject, "community_", onClickCommunity); UIHelper.registEvent(gameObject, "community_", onClickCommunity);
inputUsername = UIHelper.getByName<UIInput>(gameObject, "name_"); inputUsername = UIHelper.getByName<UIInput>(gameObject, "name_");
...@@ -127,11 +127,11 @@ public class MyCard : WindowServantSP ...@@ -127,11 +127,11 @@ public class MyCard : WindowServantSP
}); });
} }
void onJoinAthletic() { void onClickJoinAthletic() {
startMatch("athletic"); startMatch("athletic");
} }
void onJoinEntertain() { void onClickJoinEntertain() {
startMatch("entertain"); startMatch("entertain");
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment