1234567891011121314151617181920212223242526272829 |
- namespace Fort23.Mono
- {
- [UIBinding(prefab = "SentimentEffectWidget")]
- public partial class SentimentEffectWidget : ItemWidgetBasic
- {
- public AccountFileInfo.SentimentProperty sentimentProperty;
- private void Init()
- {
- }
- public override void AddEvent()
- {
- }
- public override void DelEvent()
- {
- }
- public override void AddButtonEvent()
- {
- base.AddButtonEvent();
- }
- public void CustomInit(AccountFileInfo.SentimentProperty sentimentProperty)
- {
- this.sentimentProperty = sentimentProperty;
- }
- }
- }
|